springboot
架构师Rakic
java疑难杂症?不存在的
展开
-
Springboot各个版本维护时间
Springboot各个版本维护时间原创 2024-07-09 22:01:13 · 506 阅读 · 1 评论 -
Springboot自定义start首发预告
基于Springboot的自定义start , 减少项目建设重复工作, 如 依赖 , 出入参包装 , 日志打印 , mybatis基本配置等等等.原创 2023-12-10 14:55:23 · 661 阅读 · 0 评论 -
解决rabbitmq无限循环异常问题亲测 Caused by: org.springframework.amqp.AmqpException: No method found for class [B
springboot项目: 2.2.2版本rabbitmq 踩坑: 后台无限循环抛出以下异常Caused by: org.springframework.amqp.AmqpException: No method found for class [B解决办法:主要是mq的config类配置问题,第二个是实体序列化问题config配置import org.springframework.amqp.rabbit.config.SimpleRabbitListenerContainerFactory原创 2020-06-14 13:00:09 · 3237 阅读 · 0 评论 -
springboot静态资源访问配置
静态资源访问配置spring.resources.static-locations需要配置文件夹路径,springboot会根据这个配置一直找文件,如果说在static下面有html文件夹,那么配置classpath:/static/html/spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/...原创 2019-10-16 13:17:48 · 204 阅读 · 0 评论 -
SpringDataJpa2.0+的findOne()方法被移除问题
SpringDataJpa2.0+的findOne()方法被移除移除在springboot 2.0以上版本中,CrudRepository接口的findOne(T id)方法已经被官方移除。以前findOne方法如果查询到没有结果就会返回null,2.0版本后出现getOne方法,但是查询到没有结果的时候就会报错,而不是返回null这就尴尬了,怎么办呢?退回2.0版本一下?不不不,这治标...原创 2019-06-27 23:19:05 · 698 阅读 · 0 评论 -
java.sql.SQLSyntaxErrorException: Table 'wxorderingsystem.hibernate_sequence' doesn't exist
java.sql.SQLSyntaxErrorException: Table ‘wxorderingsystem.hibernate_sequence’ doesn’t exist使用springboot 2.0.5.RELEASE时,spring-boot-starter-data-jpa使用了hibernate5(这个可以看控制台的输出,会看到hibernate是5.3.10)所以本人在...原创 2019-06-18 22:58:00 · 851 阅读 · 0 评论 -
The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone.
java.sql.SQLException: The server time zone value ‘�й���ʱ��’ is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configu...原创 2019-06-18 22:44:38 · 303 阅读 · 0 评论 -
连接异常,数据库驱动版本异常
连接异常,数据库驱动版本异常最近在运行springboot项目时遇到一个异常,一开始以为是c3p0问题,也去百度了百度内容是复制了异常信息的某一段(就是最开始的error):An Error forced the closing of Thread[C3P0PooledConnectionPoolManager[identityToken->1hge9jga32l9qij6eau1r|...原创 2019-05-30 23:39:48 · 1260 阅读 · 0 评论 -
没有将实体类序列化(序列化异常SerializationException)
序列化异常SerializationExceptionorg.springframework.data.redis.serializer.SerializationException: Cannot serialize; nested exception is org.springframework.core.serializer.support.SerializationFailedExcep...原创 2019-05-27 14:44:21 · 1702 阅读 · 0 评论 -
Spring Boot 之 Ehcache 缓存技术
Spring Boot 之 Ehcache 缓存技术<!-- Spring Boot 缓存支持启动器 --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-cache</artifactId>...原创 2019-05-30 14:52:23 · 177 阅读 · 0 评论 -
springboot热部署方式
springboot热部署方式:1.SpringLoader 插件使用的是maven的坐标方式,所以使用maven启动项目 --> spring-boot:run缺陷:1).只是对Java 代码做部署处理,对页面无能为力(更改页面内容不会失效)。2).Springloader 热部署程序是在系统后台以进程的形式来运行。需要手动关闭该进程为了解决第二个缺陷,在项目中直接使用 jar...原创 2019-05-26 23:31:36 · 271 阅读 · 0 评论 -
springboot项目webapp文件夹资源访问失败问题
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/WEB-INF/,classpath:/resources/,classpath:/static/,classpath:/public/,classpath:/templates/原创 2019-10-21 16:36:23 · 317 阅读 · 0 评论 -
Springboot项目中的jsp的访问问题
springboot自己本来就有Thymeleaf模板,但是开发中难免会出现需要jsp的使用,springboot为了应对这种情况,对jsp也支持,但是需要一番配置,配置application.propertiesspring.mvc.view.prefix=/WEB-INF/ ---这个是你的jsp存放路径的上一层路径 spring.mvc.view-name:jsp/* ---这个是js...原创 2019-05-24 18:09:25 · 309 阅读 · 0 评论