Spring注解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring注解相关的知识,希望对你有一定的参考价值。

一、常用注解

@RequestMapping 匹配路径

@PathVariable(value="id")

@RequestParam(value="name")  @RequestParam(value="age",required=false,defaultValue="0")

@CookieValue("JSESSIONID")

二、

REST风格增删改查

@RequestMapping(value="/addUser",RequestMethod.POST)

<form action="springmvc/addUser" method="post">

  <input type="text" name="uname" id="uname"/>

     <input type="submit" value="提交"/>

</form>

@RequestMapping(value="/delUser",RequestMethod.DELETE)

<form action="springmvc/delUser" method="post">

  <input type="hidden" name="_method" id="DELETE"/>

     <input type="submit" value="提交"/>

</form>

配置web.xml

<filter>
  <filter-name>HiddenHttpMethodFilter</filter-name>
  <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
</filter>
<filter-mapping>
  <filter-name>HiddenHttpMethodFilter</filter-name>
  <url-pattern>/*</url-pattern>
</filter-mapping>

 

以上是关于Spring注解的主要内容,如果未能解决你的问题,请参考以下文章

使用Java代码和注解完成Spring配置

Spring Boot实战笔记-- Spring高级话题(组合注解与元注解)

如何获取spring 注解的bean

SRPING02_配置数据源原始注解开发新注解开发集成Junit代码实现

spring 在哪里可以找到注解的实现代码

Spring组合注解与元注解