会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Master_Sun
博客园
首页
新随笔
联系
订阅
管理
2021年2月1日
Android笔记基于https://www.bilibili.com/video/BV1Bf4y1D7Gq?p=1
摘要: 如题
阅读全文
posted @ 2021-02-01 14:00 Master_Sun
阅读(189)
评论(0)
推荐(0)
编辑
简单登陆界面的应用
摘要: https://blog.csdn.net/weixin_43589465/article/details/108923950
阅读全文
posted @ 2021-02-01 11:00 Master_Sun
阅读(38)
评论(0)
推荐(0)
编辑
2021年1月29日
springboot 梳理7--整合redis(待完善)
摘要: https://www.cnblogs.com/powertoolsteam/p/redis.html https://blog.csdn.net/liqingtx/article/details/60330555 https://www.runoob.com/redis/redis-intro.h
阅读全文
posted @ 2021-01-29 22:24 Master_Sun
阅读(34)
评论(0)
推荐(0)
编辑
@GetMapping @PostMapping @PutMapping @DeleteMapping @PathVariable(占坑)
摘要: springboot 增删改查 @GetMapping @PostMapping @PutMapping @DeleteMapping @PathVariable 通过 @PathVariable 可以将URL中占位符参数{xxx}绑定到处理器类的方法形参中@PathVariable(“xxx“ @
阅读全文
posted @ 2021-01-29 17:02 Master_Sun
阅读(452)
评论(0)
推荐(0)
编辑
springboot 梳理6--定时任务
摘要: https://zhuanlan.zhihu.com/p/79644891 1. 开启 @EnableScheduling @SpringBootApplication @EnableScheduling public class StudySpringBootApplication { publi
阅读全文
posted @ 2021-01-29 16:46 Master_Sun
阅读(62)
评论(0)
推荐(0)
编辑
springboot 梳理5--热部署
摘要: 平时我们修改代码需要重启,但是当工程大了,重启的时间就变长了,所以我们引入热部署这个概念。 https://www.jianshu.com/p/f658fed35786
阅读全文
posted @ 2021-01-29 16:45 Master_Sun
阅读(57)
评论(0)
推荐(0)
编辑
springboot 梳理4--简单集成swagger(待完善)
摘要: 给controller层生成文档 1. pom.xml <!--swagger--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</ve
阅读全文
posted @ 2021-01-29 16:30 Master_Sun
阅读(79)
评论(0)
推荐(0)
编辑
springboot 梳理3--简单整合模板引擎thymeleaf
摘要: 1. pom.xml <!--整合thymeleaf--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </depend
阅读全文
posted @ 2021-01-29 14:56 Master_Sun
阅读(58)
评论(0)
推荐(0)
编辑
springboot 梳理2--配置druid数据源
摘要: 1. pom.xml添加 <!--德鲁伊数据源--> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.18</version> </dependency> 2. yml s
阅读全文
posted @ 2021-01-29 14:02 Master_Sun
阅读(236)
评论(0)
推荐(0)
编辑
springboot 梳理1--简单整合mybatis
摘要: 1. pom.xml添加 <!--mybatis起步依赖--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>
阅读全文
posted @ 2021-01-29 13:34 Master_Sun
阅读(58)
评论(0)
推荐(0)
编辑
下一页
公告