
spring mvc
yeak2001
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
@InitBinder
Customizing WebDataBinder initialization To customize request parameter binding with PropertyEditors, etc. via Spring's WebDataBinder, you can either use @InitBinder-annotated methods within your con...2009-09-09 11:08:06 · 158 阅读 · 0 评论 -
@PathVariable
@PathVariable是用来对指定请求的URL路径里面的变量 eg: [code="java"] @RequestMapping(value = "form/{id}/apply", method = {RequestMethod.PUT, RequestMethod.POST}) [/code] {id}在这个请求的URL里就是个变量,可以使用@PathVariable来获取 ...2009-09-09 11:15:05 · 124 阅读 · 0 评论