Spring
文章平均质量分 61
Bug开发攻城狮
自古,百无一用是深情,唯有套路得人心
展开
-
SpringBoot整合Shiro
兜兜转转,转眼已经进入12月中旬了,马上就是2020年了,回顾这一年,技术上,真的提升很少很少,项目中使用的技术都是很老套的SpringMvc+MyBatis,有的老项目还使用的是Struts2+Hibernate,公司对技术也不重视,在稳定的基础上,不求有功,但求无过;也没有什么技术分享。我经历过上家公司的快速节奏,现在也放松下来了,去年我还自学python、学习数据结构和算法、碰到的技术问...原创 2019-12-16 18:07:52 · 941 阅读 · 0 评论 -
SessionContext must be an HTTP compatible implementation
使用SpringBootTest和shiro结合时,发生的异常。具体信息:org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalArgumentException: SessionContext must be...原创 2019-11-12 17:08:00 · 4068 阅读 · 2 评论 -
No SecurityManager accessible to the calling code
使用SpringBootTest和shiro结合时,发生的异常。具体信息:org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.apache.shiro.UnavailableSecurityManagerException: No S...原创 2019-11-12 17:02:14 · 2451 阅读 · 2 评论 -
org.jasypt.exceptions.EncryptionOperationNotPossibleException
项目中使用的是Spring框架,上周部署到测试服务器的时候,莫名其妙的报这个错,本地是没问题的。报错信息:SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListenerorg.ja...原创 2019-04-04 13:53:26 · 16904 阅读 · 2 评论 -
spring boot输出日志到文件,遇到的问题
一个非常简单的问题,我却纠结了半个下午。 Spring boot的日志默认是输出控制台的,如果想记录到文件,只需要在application.properties文件指定logging.path或者logging.file即可。我按照配置,在配置文件,追加了配置 logging.path=D:/tmp logging.file=spring-boot.log ...原创 2019-01-28 09:35:44 · 11745 阅读 · 8 评论 -
Encountered invalid @Scheduled method 'abc': Cron expression must consist of 6 field
最近在做一个需求的时候,需求是定时+可以手动执行一个job。既然这样的话,我就在Quartz项目里,写了两个cron,一个是定时,另外一个则希望是2月31号cron: 0 0 0 31 2 ? (因为2月根本没有31号,间接表示是永远不执行),哪知道直接一启动就报错了,报的错是无法解析 cron 。。。,既然这样的话,那我只能写一个存在的时间了,于是把cron改成 0 0 0 29 2原创 2018-03-09 22:15:53 · 25903 阅读 · 8 评论 -
spring @transactional public和自调用方法的问题处理
@Transactional 只能应用到 public 方法才有效只有@Transactional 注解应用到 public 方法,才能进行事务管理。这是因为在使用 Spring AOP 代理时,Spring 在调用在图 1 中的 TransactionInterceptor 在目标方法执行前后进行拦截之前,DynamicAdvisedInterceptor(CglibAopProxy 的内部...转载 2017-08-14 17:31:32 · 11202 阅读 · 3 评论 -
org.springframework.beans.MethodInvocationException: Property 'cacheManager' threw exception; neste
Caused by: org.springframework.beans.PropertyBatchUpdateException; nested PropertyAccessExceptions (1) are:PropertyAccessException 1: org.springframework.beans.MethodInvocationException: Property 'ca原创 2016-07-04 16:10:58 · 9612 阅读 · 0 评论 -
利用spring mail 发送带附件的邮件
http://pan.baidu.com/s/1mhC86NI原创 2016-05-26 15:48:41 · 6916 阅读 · 0 评论 -
spring junit 单元测试
import java.util.List;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.test.context.ContextConfigurati原创 2016-04-18 10:48:40 · 2538 阅读 · 0 评论 -
spring quartz 定时器
java定时器、spring定时器、quartz定时器的比较和分别实现quartz参数详细原创 2016-01-02 17:12:55 · 3939 阅读 · 3 评论