Spring中注解

Posted stanljj

tags:

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

@Autowired :spring注解

@Resource :J2EE注解

 

@Transactional(rollbackFor=Exception.class):指定回滚

 

@RequestMapping(value="/device/snap/{deviceCode}/{channelId}",method=RequestMethod.POST)

public @ResponseBody void snap(@PathVariable String deviceCode,@PathVariable String channelId, HttpServletRequest request, HttpServletResponse response)

  @responseBody注解的作用是将controller的方法返回的对象通过适当的转换器转换为指定的格式之后,写入到response对象的body区,通常用来返回JSON数据或者是XML

  数据,需要注意的呢,在使用此注解之后不会再走试图处理器,而是直接将数据写入到输入流中,他的效果等同于通过response对象输出指定格式的数据。  

  @RequestMapping("/login")
  @ResponseBody
  public User login(User user){
    return user;
  }
  User字段:userName pwd
  那么在前台接收到的数据为:‘{"userName":"xxx","pwd":"xxx"}‘

  效果等同于如下代码:
  @RequestMapping("/login")
  public void login(User user, HttpServletResponse response){
    response.getWriter.write(JSONObject.fromObject(user).toString());
  }

 

public void sendProduct(@RequestParam int productId)    @RequestParam:获取请求参数

 

public String submitOrder(@ModelAttribute Order order, Model model) @ModelAttribute:使用键值order将Order实例添加到Model对象中

 













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

spring注解怎么实现的

spring@bean注解可以作用在重载的方法上吗

spring全注解事务管理中怎么手动回滚事物

spring常用注解汇总

Spring使用@Scheduled注解配置定时任务

学习笔记——Spring中的注解;Spring中装配对象的注解;使用注解配置对象中属性