- 浏览: 3887 次
- 来自: no
最新评论
文章列表
看了一些公司的后台框架的使用,个人觉得用得不够好,想分享一下自己搭建的后台框架,
github地址(页面右边有个Download ZIP 下载):
xml配置bean:
https://github.com/songkun/spring-mybatis-jquery
注解bean:
https://github.com/songkun/spring-mybatis-jquery-2
用到了maven管理代码,用过maven会觉得ant太难受。
如果觉得可以,欢迎使用,觉得有什么不好的地方,欢迎提出
陆续会给出
struts2/spring/hibernate/easyUI(or e ...
CustomLoader.java——504行:
protected void autoDiscoverTypes(ResultSet rs) {
try {
Metadata metadata = new Metadata( getFactory(), rs );
List aliases = new ArrayList();
List types = new ArrayList();
rowProcessor.prepareForAutoDiscovery( metadata );
for ( int i = 0; i < r ...
tomcat源码:
----------------------redirect-------------------------------
try {
String absolute = toAbsolute(location);
setStatus(SC_FOUND);
setHeader("Location", absolute);
} catch (IllegalArgumentException e) {
setStatus(SC_NOT_FOUND);
} ...