java
oppo-s
i can
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
springboot报错: org.thymeleaf.exceptions.TemplateInputException
今天在使用springboot时,浏览器访问resource下面的静态文件的时候遇到一个报错: org.thymeleaf.exceptions.TemplateInputException: Error resolving template "xxx/xxx", template might not exist or might not be accessible by any of the configured Template Resolvers at org.thymeleaf.engine.原创 2020-07-18 01:39:35 · 1087 阅读 · 1 评论 -
Java内存模型学习笔记
1.JMM定义了一个线程对共享变量的操作何时对其他的线程可见。在线程中对虚拟机的主存里的共享变量进行操作的时候,由于存在其操作的并非是主存的变量,而是一个处于处理器缓冲区的一个变量的副本,那么必然存在一个刷新到主存 的这么一个过程,而这个过程可能会导致内存的不可见问题,也即处理器指令的重排序问题。如果一个线程读取了另一个线程修改但是没有及时刷新到主存的那个变量,那么就产生了数据的不一致问题。那么翻译 2017-10-06 23:20:44 · 250 阅读 · 0 评论 -
【springboot错误】 Failed to instantiate [org.springframework.transaction.interceptor.BeanFactoryTransac
在起来的一个项目中,使用原有的配置,进行启动,发现一直有一个错误循环打印,都是fegin类: getTypeForFactoryBean:1516] : Bean creation exception on non-lazy FactoryBean type check: org.springframework.beans.factory.UnsatisfiedDependencyExcep...原创 2019-07-08 21:06:35 · 5737 阅读 · 0 评论
分享