
spring
iteye_20323
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Maven版,Spring mvc, CXF WebService, WebService/Controller Interceptor, Sitemesh
=========Spring MVC============================================================== web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchem...原创 2013-05-23 18:04:58 · 137 阅读 · 0 评论 -
Spring MVC 获取请求参数、多文件上传
通过@PathVariabl注解获取路径中传递参数 [code="java"] @RequestMapping(value = "/{id}/{str}") public ModelAndView helloWorld(@PathVariable String id, @PathVariable String str) { System.out.println(id); Sy...原创 2012-10-18 13:41:47 · 169 阅读 · 0 评论