ssm+
简记与spring+springmvc+mybatis相关的框架相关经验
sky_jiangcheng
这个作者很懒,什么都没留下…
展开
-
this web application instance has been stopped already. Could not load []
项目启动过程中出现下面这个错误,比较棘手,更换了mysql-connector-java 和 servlet-api 的版本也没有起到作用11-Jul-2019 16:32:00.345 严重 [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.StandardContext.startInternal One or mor...原创 2019-07-11 16:49:42 · 10650 阅读 · 1 评论 -
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
项目使用某个方法时出现这个错误:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.jiangcz.joyfarming.storage.mapper.PmsFileMapper.insert at org.apache.ibatis.binding.MapperMeth...原创 2019-08-28 17:05:30 · 224 阅读 · 0 评论 -
Result Maps collection already contains value for xxx
由于某个表的字段不符合要求于是使用 mybatis-generator 重新生成了 相关的 class 和 xml 配置文件,替换之后项目启动报错了,报错如下019-07-23 16:20:21.599 ERROR 19216 --- [ main] o.s.b.web.embedded.tomcat.TomcatStarter : Error starting Tom...原创 2019-07-23 17:05:02 · 339 阅读 · 0 评论 -
定位一个Mybatis+PageInterceptor使用过程中的问题
在开发一个分页查询的功能时debug模式出了一个bug,无法直接定位,通过不断的断点终于发现了是自己的配置问题。解决过程如下:1,首先错误出现在包内,日志如下:05-Jul-2019 19:08:38.615 严重 [http-apr-8080-exec-8] org.apache.catalina.core.StandardWrapperValve.invoke Servlet.ser...原创 2019-07-05 19:17:28 · 1954 阅读 · 0 评论 -
spring 中schedule注解方式实现定时任务
定时任务是常用功能,比如超时检索等数据检索功能或者定时发布功能,使用spring boot 注解式代码如下:① 在 main 中开启定时任务的注解 @EnableSchedulingpackage com.jiangcheng;import org.springframework.boot.SpringApplication;import org.springframework.b...原创 2018-12-29 14:33:50 · 809 阅读 · 0 评论 -
搭建ssm的踩坑之路(四)IllegalArgumentException: Cannot find cache
继续上一篇https://blog.csdn.net/sky_jiangcheng/article/details/86514112,搭建ssm项目过程中,使用cache过程中爆出如下bug,截图如下:日志如下:java.lang.IllegalArgumentException: Cannot find cache named 'cacheTest' for Builder[pub...原创 2019-01-17 17:49:11 · 12239 阅读 · 0 评论 -
搭建ssm的踩坑之路(三)找不到EhCacheManagerFactoryBean
继续上一篇https://blog.csdn.net/sky_jiangcheng/article/details/86513900,搭建ssm项目过程中,配置缓存管理(cacheManager)之后,<bean id="ehCacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"...原创 2019-01-16 20:26:37 · 1030 阅读 · 0 评论 -
搭建ssm的踩坑之路(二)ReflectionWorld$ReflectionWorldException
继续上一篇https://blog.csdn.net/sky_jiangcheng/article/details/86511850,搭建ssm项目过程中,配置事物管理器之后,<tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> ...原创 2019-01-16 20:16:19 · 371 阅读 · 0 评论 -
搭建ssm的踩坑之路(一)EhcacheCache、LoggingEhcache启动不起来
用惯了springboot感觉对ssm原始的搭配方式有点陌生了,决定动手搭建一次ssm框架,搭建好之后还原了一下,把一些踩坑记录写下来,用作参考。这次搭建使用到框架 spring + springmvc + mybatis + ehcache + druid ,然后用到 ehcache的时候出现了下面的bug见截图:日志如下:Caused by: java.lang.NoClassDef...原创 2019-01-16 20:07:00 · 2049 阅读 · 1 评论 -
JPA用法
查询语言:Query Language条件表达式:where+having+on输入参数:支持位置参数 ?1,和命名参数 :userName,但这两者不能混用条件组合:属性导航:user.userName,一元运算 + -,逻辑操作 NOT AND OR,比较Comparison:= > >= < <= <>区间Between:[NOT] BETWEEN,支持数...转载 2016-12-20 10:09:21 · 3487 阅读 · 0 评论 -
ssm的项目启动错误
今天启动一个历史ssm的demo发现报异常了:F:\Program\apache-tomcat-8.0.53\bin\catalina.bat run[2018-08-01 09:44:33,974] Artifact ssm_demo:war: Waiting for server connection to start artifact deployment...Using CATA...原创 2018-08-01 09:51:47 · 1245 阅读 · 0 评论 -
mybatis一个非典型使用异常
mybatis传参有多种方式,这里捕获一种异常如下org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'custId' not found. Available parameters are [arg1, arg...原创 2018-08-01 19:47:46 · 3649 阅读 · 0 评论