spring常用注解

编程

@Configuration

这个注解类似于xml里定义的beans,引用这个注解的类,在其方法上加了@bean,就相当于在xml里注册的<bean />。@Configuration要配合自动扫描使用,保证加了这个注解的类能加载到spring容器里。否则相当于写了xml文件,却没有引用。

@Configuration

public class Myconfig {

@Bean

public JdbcTemplate getJdbcTemplate() {

return new JdbcTemplate();

}

}

@Autoware

顾名思义,就是自动装配的意思。用它可以更方便的注入bean,@Autowired注解是按类型装配依赖对象,默认情况下它要求依赖对象必须存在,如果允许null值,可以设置它的required属性为false

@RestController

public class TestController {

@Autowired(required = false)

private UserService userService;

@GetMapping("test/{userId}")

public String getUser(@PathVariable Integer userId) {

return "123";

}

}

@RestController

这是spring4.0引入的注解,是两个注解@Controller和@ResponseBody组合成的注解例子同上

@Controller

用于标识web控制器,允许通过类路径扫描自动检测实现类

@Service

用于标识业务层,一般用来写复杂的业务逻辑

@Repository

用于标识数据访问层,一般用于写一些访问数据的代码,数据库、mongodb、es等

@Component

标识组件,标注的类被认为是自动检测的候选类,使用基于注释的配置和类路径扫描,@Controller、@Service、@Repository都是引用的@Component

@RequestMapping

@RequestMapping是一个用来处理请求地址映射的注解,可用于类或方法上。用于类上,表示类中的所有响应请求的方法都是以该地址作为父路径,共有有六个属性

value:指定请求的实际地址

method:指定请求的method的类型,包括GET、POST等

consumes:指定处理请求的提交内容类型(Content-Type),例如application/json, text/html

produces:指定返回的内容类型,仅当request请求头中的(Accept)类型中包含该指定类型才返回

params:指定request中必须包含某些参数值是,才让该方法处理

header:指定request中必须包含某些指定的header值,才能让该方法处理请求

@RestController

public class TestController {

@RequestMapping(value = "test", method = RequestMethod.GET, consumes = "application/json",

produces = "application/*", params = "name==gy", headers = "My-Header=myValue")

public String getUser() {

return "123";

}

}

@PathVariable和@RequestParam

@PathVariable:路径变量,是路径的一部分

@RequestParam:请求参数,就是获取参数的

@RestController

public class TestController {

@GetMapping("getUser/{userId}")

public String getUser(@PathVariable Integer userId) {

return "123";

}

@GetMapping("queryUser")

public String queryUser(@RequestParam Integer userId) {

return "123";

}

}

 

以上是 spring常用注解 的全部内容, 来源链接: utcz.com/z/512166.html

回到顶部