实例介绍
spring mvc 实战指南和spring mvc入门:图解加源代码
【实例截图】
【核心代码】
Spring mvc指南+Spring mvc入门.rar
└── Spring mvc指南+Spring mvc入门
├── spring3.0MVC注解(附实例).doc
├── spring mvc入门.pdf
└── spring mvc权威指南
├── bao
│ ├── com.springsource.com.lowagie.text-2.0.8.jar
│ ├── com.springsource.com.thoughtworks.xstream-1.3.1.jar
│ ├── com.springsource.freemarker-2.3.15.jar
│ ├── com.springsource.javax.mail-1.4.0.jar
│ ├── com.springsource.javax.servlet.jsp.jstl-1.1.2.jar
│ ├── com.springsource.javax.validation-1.0.0.GA.jar
│ ├── com.springsource.net.sf.jasperreports-2.0.5.jar
│ ├── com.springsource.org.aopalliance-1.0.0.jar
│ ├── com.springsource.org.apache.commons.beanutils-1.8.0.jar
│ ├── com.springsource.org.apache.commons.fileupload-1.2.0.jar
│ ├── com.springsource.org.apache.commons.io-1.4.0.jar
│ ├── com.springsource.org.apache.commons.lang-2.1.0.jar
│ ├── com.springsource.org.apache.commons.logging-1.1.1.jar
│ ├── com.springsource.org.apache.log4j-1.2.15.jar
│ ├── com.springsource.org.apache.taglibs.standard-1.1.2.jar
│ ├── com.springsource.org.apache.velocity-1.5.0.jar
│ ├── com.springsource.org.aspectj.tools-1.6.6.RELEASE.jar
│ ├── com.springsource.org.castor-1.2.0.jar
│ ├── com.springsource.org.hibernate.validator-4.1.0.GA.jar
│ ├── com.springsource.org.joda.time-1.6.0.jar
│ ├── com.springsource.org.junit-4.7.0.jar
│ ├── iTextAsian.jar
│ ├── jackson-all-1.6.9.jar
│ ├── jettison-1.3.jar
│ ├── org.springframework.asm-3.0.5.RELEASE.jar
│ ├── org.springframework.beans-3.0.5.RELEASE.jar
│ ├── org.springframework.context-3.0.5.RELEASE.jar
│ ├── org.springframework.context.support-3.0.5.RELEASE.jar
│ ├── org.springframework.core-3.0.5.RELEASE.jar
│ ├── org.springframework.expression-3.0.5.RELEASE.jar
│ ├── org.springframework.oxm-3.0.5.RELEASE.jar
│ ├── org.springframework.test-3.0.5.RELEASE.jar
│ ├── org.springframework.web-3.0.5.RELEASE.jar
│ ├── org.springframework.web.servlet-3.0.5.RELEASE.jar
│ ├── poi-3.7.jar
│ ├── poi-ooxml-3.7.jar
│ ├── poi-ooxml-schemas-3.7.jar
│ ├── servlet-api.jar
│ ├── slf4j-api-1.6.1.jar
│ └── slf4j-log4j12-1.6.1.jar
├── spmvcPro_withoutjar
│ ├── out
│ │ ├── artifacts
│ │ │ └── spmvcPro_war_exploded
│ │ │ ├── images
│ │ │ ├── js
│ │ │ └── WEB-INF
│ │ │ ├── classes
│ │ │ │ ├── com
│ │ │ │ │ └── baobaotao
│ │ │ │ │ ├── domain
│ │ │ │ │ ├── ftl
│ │ │ │ │ └── web
│ │ │ │ ├── conf
│ │ │ │ │ └── i18n
│ │ │ │ └── theme
│ │ │ ├── ftl
│ │ │ └── views
│ │ │ └── user
│ │ ├── production
│ │ │ └── spmvcPro
│ │ │ ├── com
│ │ │ │ └── baobaotao
│ │ │ │ ├── domain
│ │ │ │ └── web
│ │ │ ├── conf
│ │ │ │ └── i18n
│ │ │ └── theme
│ │ └── test
│ │ └── spmvcPro
│ │ └── com
│ │ └── baobaotao
│ │ ├── ftl
│ │ │ ├── applicationContext.xml
│ │ │ ├── listUser.ftl
│ │ │ └── TestFreemarker.class
│ │ └── web
│ │ └── UserControllerTest.class
│ ├── spmvcPro.iml
│ ├── spmvcPro.ipr
│ ├── spmvcPro.iws
│ ├── src
│ │ ├── com
│ │ │ └── baobaotao
│ │ │ ├── domain
│ │ │ │ ├── Address.java
│ │ │ │ ├── Dept.java
│ │ │ │ ├── StringToUserConverter.java
│ │ │ │ ├── UserEditor.java
│ │ │ │ └── User.java
│ │ │ ├── UserService.java
│ │ │ └── web
│ │ │ ├── MyBase.java
│ │ │ ├── MyBindingInitializer.java
│ │ │ ├── MyHandlerExceptionResolver.java
│ │ │ ├── MySimpleMappingExceptionResolver.java
│ │ │ ├── ResourcePathExposer.java
│ │ │ ├── UserController.java
│ │ │ ├── UserListExcelView.java
│ │ │ ├── UserListPdfView.java
│ │ │ └── UserValidator.java
│ │ ├── conf
│ │ │ ├── applicationContext.xml
│ │ │ └── i18n
│ │ │ ├── content.properties
│ │ │ ├── content_zh_CN.properties
│ │ │ ├── messages_en_US.properties
│ │ │ ├── messages.properties
│ │ │ ├── messages_zh_CN.properties
│ │ │ ├── views_en_US.properties
│ │ │ └── views_zh_CN.properties
│ │ ├── image.jpg
│ │ ├── log4j.properties
│ │ ├── META-INF
│ │ │ └── publicResources
│ │ │ ├── images
│ │ │ └── js
│ │ ├── Snap1.jpg
│ │ ├── Snap2.jpg
│ │ └── theme
│ │ ├── cool_en_US.properties
│ │ ├── cool.properties
│ │ ├── cool_zh_CN.properties
│ │ ├── warm_en_US.properties
│ │ ├── warm.properties
│ │ └── warm_zh_CN.properties
│ ├── test
│ │ └── com
│ │ └── baobaotao
│ │ ├── ftl
│ │ │ ├── applicationContext.xml
│ │ │ ├── listUser.ftl
│ │ │ └── TestFreemarker.java
│ │ └── web
│ │ └── UserControllerTest.java
│ └── web
│ ├── error.jsp
│ ├── images
│ │ └── bg.gif
│ ├── index.jsp
│ ├── js
│ │ └── test.js
│ ├── test.jsp
│ ├── upload
│ │ └── temp
│ └── WEB-INF
│ ├── classes
│ │ ├── com
│ │ │ └── baobaotao
│ │ │ ├── domain
│ │ │ │ ├── Address.class
│ │ │ │ ├── Dept.class
│ │ │ │ ├── StringToUserConverter.class
│ │ │ │ ├── User.class
│ │ │ │ └── UserEditor.class
│ │ │ ├── ftl
│ │ │ │ ├── applicationContext.xml
│ │ │ │ ├── listUser.ftl
│ │ │ │ └── TestFreemarker.class
│ │ │ ├── UserService.class
│ │ │ └── web
│ │ │ ├── MyBase.class
│ │ │ ├── MyBindingInitializer.class
│ │ │ ├── MyHandlerExceptionResolver.class
│ │ │ ├── MySimpleMappingExceptionResolver.class
│ │ │ ├── ResourcePathExposer.class
│ │ │ ├── UserController.class
│ │ │ ├── UserControllerTest.class
│ │ │ ├── UserListExcelView.class
│ │ │ ├── UserListPdfView.class
│ │ │ └── UserValidator.class
│ │ ├── conf
│ │ │ ├── applicationContext.xml
│ │ │ └── i18n
│ │ │ ├── content.properties
│ │ │ ├── content_zh_CN.properties
│ │ │ ├── messages_en_US.properties
│ │ │ ├── messages.properties
│ │ │ ├── messages_zh_CN.properties
│ │ │ ├── views_en_US.properties
│ │ │ └── views_zh_CN.properties
│ │ ├── image.jpg
│ │ ├── log4j.properties
│ │ ├── META-INF
│ │ │ └── publicResources
│ │ │ ├── images
│ │ │ └── js
│ │ ├── Snap1.jpg
│ │ ├── Snap2.jpg
│ │ └── theme
│ │ ├── cool_en_US.properties
│ │ ├── cool.properties
│ │ ├── cool_zh_CN.properties
│ │ ├── warm_en_US.properties
│ │ ├── warm.properties
│ │ └── warm_zh_CN.properties
│ ├── ftl
│ │ └── userListFtl.ftl
│ ├── lib
│ ├── springServlet-servlet.xml
│ ├── views
│ │ ├── baobaotao-views.xml
│ │ ├── fail.jsp
│ │ ├── success.jsp
│ │ ├── themeTest.jsp
│ │ ├── uploadPage.jsp
│ │ ├── user
│ │ │ ├── createSuccess.jsp
│ │ │ ├── register2.jsp
│ │ │ ├── register3.jsp
│ │ │ ├── register4.jsp
│ │ │ ├── register.jsp
│ │ │ ├── showUser.jsp
│ │ │ ├── userList.jsp
│ │ │ └── welcome.jsp
│ │ └── userListMix.jsp
│ └── web.xml
└── Spring MVC 3.0实战指南.ppt
77 directories, 146 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论