
SpringBoot
mine_wz
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
spring bean忽略bean重复
配置spring: main: allow-bean-definition-overriding: true原创 2021-12-03 15:20:19 · 966 阅读 · 0 评论 -
spring boot集成shiro
认证依赖 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.5.RELEASE</version> <relativePath/> </pare原创 2021-06-18 11:09:13 · 100 阅读 · 0 评论 -
mybatis_plus学习(各个注解)
配置文件mybatis-plus: configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #输出sql日志 mapper-locations: classpath:com/example/dao/*.xml #对应xml的路径 global-config: db-config: id-type: auto #自增id field-strategy: not_empty #驼原创 2021-06-01 11:12:30 · 219 阅读 · 0 评论 -
Spring Boot 整合 QuartZ以及Cron表达式
首先导入Jar <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> <version>2.2.3</version> </dependency>启动类上加注解@EnableScheduling测试原创 2020-09-04 17:49:43 · 414 阅读 · 0 评论