使用Idea搭建的Maven项目,会不定期更新一些在实际开发中使用的技巧(ps:目前不是很忙基本上一周一更)。 没有复杂的业务流程,更不是XXXX系统,只有一些技术的分享。想要学习XX系统的:
这里有两个完整的项目,都写有注释也比较简单。
有任何问题和欢迎Issues
觉得不错的朋友可以点下
star
,watch
,fork
也算是对我的鼓励了。
掘金地址:https://juejin.im/post/58e674ec44d904006d35af5c
效果实例:
博客地址:SSM(十) 项目重构-互联网项目的Maven结构
掘金地址:https://gold.xitu.io/post/58b98ab01b69e6006b12ab83
效果实例:
简书地址:http://www.jianshu.com/p/5a23ff31204f
效果实例:
@Test
public void insertSelective2() throws Exception {
Content content = new Content();
content.setContent("你好");
content.setContentname("1");
content.setCreatedate("2016-09-23");
contentService.insertSelective(content);
ContentLog log = new ContentLog();
CommonUtil.setLogValueModelToModel(content, log);
contentLogService.insertSelective(log);
}
博客地址:SSM(八)动态切换数据源
简书地址:http://www.jianshu.com/p/9d3d92b37c0a
简书地址:http://www.jianshu.com/p/77cd4ae50c8b
博客地址:SSM(六)跨域传输 简书地址:http://www.jianshu.com/p/3e3d9a89fafc 效果实例:
博客地址:SSM(五)基于webSocket的聊天室 简书地址:http://www.jianshu.com/p/79faa8af6455 效果实例:
博客地址:SSM(四)WebService入门详解 简书地址:http://www.jianshu.com/p/5c2b01aaa7ac 效果实例:
博客地址:SSM(三)Shiro使用详解 简书地址:http://www.jianshu.com/p/6786ddf54582 效果实例:
博客地址:SSM(二)Lucene全文检索 效果实例:
博客地址:SSM(一)框架的整合