SpringBoot
SpringBoot框架技术性文章及笔记汇总
big_eleven
Java软件研发工程师,6年工作经验,热爱技术分享,擅长输出Java知识与心PMP应用心得。
公众号:未来优秀PM
展开
-
SpringBoot学习(九):SpringBoot集成Shiro
Maven配置:<dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring</artifactId> <version>1.3.2</version>...原创 2019-08-29 17:20:08 · 144 阅读 · 0 评论 -
Springboot学习(五):使用JXLS进行模板excle导出数据
第一步:引依赖<dependency> <groupId>net.sf.jxls</groupId> <artifactId>jxls-core</artifactId> <version>1.0.5</version> ...原创 2019-11-14 10:16:46 · 911 阅读 · 0 评论 -
SpringBoot学习(八):restful风格api暴露
原创 2019-06-12 20:21:39 · 1079 阅读 · 0 评论 -
SpringBoot学习(七):整合Redis进行数据缓存
(一)、添加依赖,SpringBoot中已经将Redis引入进来<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId></dependenc...原创 2019-12-18 16:22:01 · 298 阅读 · 0 评论 -
SpringBoot学习(六):WebSocket应用
(一)、添加依赖(springboot)里面整合的有WebScoket<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId></de...原创 2019-12-17 17:11:45 · 192 阅读 · 0 评论 -
SpringBoot学习(四):使用模板引擎thymeleaf经验总结
第一步:添加依赖,springboot中集成了thymeleaf,所以用springboot中的依赖就行<!--模板引擎--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>sp...原创 2019-11-14 10:17:47 · 180 阅读 · 0 评论 -
Springboot学习(三):整合通用Mapper并测试
第一步:添加依赖信息 <!-- 通用Mapper--> <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper-spring-boot-starter</artifac...原创 2019-07-16 20:39:10 · 2274 阅读 · 0 评论 -
Springboot学习(二):maven手动搭建springboot项目
第一步:创建普通的maven项目第二步:添加依赖 <!-- 父工程为springboot项目--> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-we...原创 2019-07-16 20:36:39 · 627 阅读 · 0 评论 -
Springboot学习(一):使用IDEA快速搭建Springboot项目
第一步第二步第三步:点击Next,常规的web项目填写,点击Next第四步:选择所用依赖第五步:填写项目名字和路径,点击完成完成原创 2019-06-12 20:06:47 · 260 阅读 · 0 评论