
SSH随笔
cleargy
这个作者很懒,什么都没留下…
展开
-
SpringContextHolder通用方法
1、 SpringContextHolder方法 public class SpringContextHolder implements ApplicationContextAware { private static ApplicationContext context; @Override public void setApplicationContext(Appl...原创 2018-08-31 11:17:18 · 1979 阅读 · 0 评论 -
springMVC-json配置及中文乱码解决
问题:最近使用spring4.0的Mvc,json请求时,客户端报错,406 Not Acceptable。 解决方法一: 1、导入第三方的jackson包,jackson-mapper-asl-1.9.7.jar和jackson-core-asl-1.9.7.jar。 2、Spring3.1之前的版本时,配置文件添加: <mvc:annotation-driven/> &...原创 2018-09-10 10:36:23 · 937 阅读 · 0 评论 -
Idea搭建mybatis-generator
1、springboot 2.0 + mybatis+web + mysql +jdbc 搭建项目 2、pom.xml中引入mybatis-generator-maven-plugin,只需配置第二个plugin。之后会在Maven Projects的Plugins下自动生成一个mybatis-generator插件,配置generatorConfig.xml后双击该插件即可自动生成相关代码。 ...原创 2018-11-17 18:49:04 · 471 阅读 · 0 评论