
spring
文章平均质量分 84
勇哥聊IT
分享编程心得,共赏技术风景
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
maven 创建Spring项目
参考:http://limingnihao.iteye.com/blog/830409原创 2012-07-06 10:35:06 · 1333 阅读 · 0 评论 -
Spring MVC
spring mvc注解例子 http://www.blogjava.net/pengo/archive/2010/11/28/339229.html原创 2012-07-13 09:58:29 · 800 阅读 · 0 评论 -
Spring使用Velocity模版
pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/mav原创 2012-07-13 11:18:41 · 2233 阅读 · 0 评论 -
Spring 中使用Log4j
pom.xml配置 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd原创 2012-07-13 14:36:52 · 703 阅读 · 0 评论 -
Spring Web MVC
参考官方文档: URI Template Patterns @RequestMapping(value="/spring/*/{id}/index.do") public ModelAndView index(@PathVariable int id){ System.out.println("id"+id); Map param=new HashM原创 2012-07-16 11:28:14 · 527 阅读 · 0 评论 -
Spring 中文乱码
获取的参数使用 str= new String(str.getBytes("ISO-8859-1"), "utf-8"); http://panyongzheng.iteye.com/blog/1413289 <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun原创 2012-07-10 22:15:08 · 472 阅读 · 0 评论 -
Spring 同时使用多个视图
参考:http://www.iteye.com/problems/55772 Pom.xml 4.0.0 com.wodwl jiajia 0.0.1 war org.apache.maven.plugins maven-compiler-plugin 2.3.1 1.6 1.6转载 2012-07-26 14:40:16 · 467 阅读 · 0 评论 -
Spring 文件上传
http://www.cnblogs.com/frankliiu-java/articles/1780511.html http://blog.youkuaiyun.com/zwhfyy/article/details/3784842 加入jar包 commons-fileupload commons-fileupload 1.2.2 net.sf.stac原创 2012-08-01 14:43:28 · 1378 阅读 · 0 评论 -
Spring整合Hibernate
http://blog.youkuaiyun.com/kkdelta/article/details/5587659转载 2013-01-04 16:58:55 · 522 阅读 · 0 评论 -
Spring MVC 注解
spring-servlet.xml配置 <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xml原创 2012-07-13 10:39:25 · 666 阅读 · 0 评论 -
Spring MVC-实例1
pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/mav原创 2012-07-13 10:18:36 · 566 阅读 · 0 评论 -
Spring指南
Spring 注解 http://hanyexiaoxiao.iteye.com/blog/410123原创 2012-07-06 16:34:54 · 377 阅读 · 0 评论 -
Spring FreeMarker
Spring框架集成FreeMarker http://blog.sina.com.cn/s/blog_5ca9fdd80100fxx5.html原创 2012-07-09 11:31:32 · 544 阅读 · 0 评论 -
Spring Velocity
Spring velocity http://xumingrencai.iteye.com/blog/1521549 Spring MVC 与 Velocity 整合 http://hi.baidu.com/zhangxuan1224/blog/item/6c7b795900ecb6222934f07f.html Spring中使用Velocity模板 htt原创 2012-07-09 10:55:29 · 1069 阅读 · 0 评论 -
Spring 数据库配置
官方文档提供了两种最佳实践 1.xml中配置bean的依赖 <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframewor原创 2012-07-09 14:43:19 · 1093 阅读 · 0 评论 -
Spring环境搭建
1.下载spring-3.2.0.M1-dist.zip包 http://www.springsource.org/download/ 2.下载依赖包commons-logging.jar http://commons.apache.org/logging/download_logging.cgi 3.Spring web 配置 http://www.2cto.com/kf/2011原创 2012-07-09 16:27:02 · 656 阅读 · 0 评论 -
Spring Web环境搭建
Spring温故知新:WEB篇(二)Hello,World! http://www.2cto.com/kf/201108/102113.html原创 2012-07-10 20:21:16 · 684 阅读 · 0 评论 -
Spring 图片上传
参考: http://hi.baidu.com/yuwenxinfirst/item/0549534b12b3c60cc116137b http://woshixushigang.iteye.com/blog/1258404 http://www.cnblogs.com/frankliiu-java/articles/1780511.html原创 2012-07-11 10:12:44 · 970 阅读 · 0 评论 -
Eclipse Maven 构建web应用
Maven 生成web应用(转) http://blog.163.com/liuweiyoung@126/blog/static/17313104520125210739180/ 此外设置eclipse默认编码,具体参考: http://blog.youkuaiyun.com/wodwl/article/details/7737620原创 2012-07-11 12:57:02 · 1020 阅读 · 0 评论 -
Spring 整合Struts
http://blog.youkuaiyun.com/luohuijun619/article/details/5013275转载 2013-01-04 16:43:31 · 481 阅读 · 0 评论