
springboot
。。。=-=
这个作者很懒,什么都没留下…
展开
-
Could not resolve type alias ‘xxx‘
产生错误原因有以下2种原因第一种是在yml中配置以下mybatis: mapper-locations: classpath:mapper/xxx/*.xmltype-aliases-package: com.xxx.entity配置好后如果使用的是springboot @Bean(name = "subTemSqlSessionFactory") @Primary public SqlSessionFactory subTemSqlSessionFactory(@Qualifi原创 2021-08-31 10:27:10 · 1566 阅读 · 0 评论 -
DateTimeFormat & JsonFormat
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") get@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") set原创 2021-05-08 14:09:05 · 105 阅读 · 0 评论 -
缓存@Cacheable
//指定查询缓存 @Cacheable(cacheNames = {"selectDevInfoList"})//消除指定缓存 @Caching(evict = @CacheEvict(value = "selectDevInfoList", allEntries = true, beforeInvocation = true)) //消除多个缓存 @Caching(evict = {@CacheEvict(value = "xx", allEntries = true, be.转载 2021-01-26 09:27:23 · 624 阅读 · 0 评论 -
springboot+shiro+redis实现分布式项目共享session
默认使用开源库org.crazycake:shiro-redis:2.4.2.1集成redis,直接使用 <!-- https://mvnrepository.com/artifact/org.crazycake/shiro-redis --> <dependency> <groupId>org.crazycake</groupId> <artifactId>shiro-redis</artifactId&...原创 2020-05-10 12:01:06 · 1567 阅读 · 0 评论 -
Tomcat下部署多个springboot项目
在同一个Tomcat下配置多个springboot项目分为4步第一步:将启动类修改继承SpringBootServletInitializer 类,重写configure方法,否则在部署到tomcat时,接口将访问不到@SpringBootApplication@EnableConfigurationProperties({MasterConfig.class, GzmTemConf...原创 2020-04-24 09:50:29 · 2523 阅读 · 1 评论 -
springboot 创建多数据源invalid bound statement (not found)
遇到错误问题 1.如果是yml文件配置,首先第一检查格式是否正确 推荐http://www.bejson.com/validators/yaml_editor/ 检查 2.invalid bound statement (not found)报错问题 检查resources 下的mapeer文件夹名称是否和src/mian/java 文件夹下...原创 2020-03-31 10:20:10 · 4575 阅读 · 1 评论