​SpringBoot-31-注解详解-1

简介: ​SpringBoot-31-注解详解-1

SpringBoot-31-注解详解-1

@Controller


@Controller是Spring MVC中创建模型并找到相对应视图(VIEW)的,在SpringBoot开始就有这个注释,我们举例说明

    @GetMapping(value = "test")
    public String test(String msg, Model model){
        //在对test页面渲染通过ModeMap,向页面添加了一个msg,
        // 参数,它的值为参数msg的内容
        model.addAttribute("msg",msg);
        return "test"; //值test表示的是模板页面对应的名称
    }



test.html中内容

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org/">
<head>
    <meta charset="UTF-8">
    <title>Test</title>
</head>
<body>
<h1>Test</h1>
<div th:text="${msg}" ></div>
</body>
</html>



使用浏览器访问结果为:



  • 在对test页面渲染通过ModeMap,向页面添加了一个msg,参数,它的值为welcome my test page
  • return值test表示的是模板页面对应的名称。

结果显示的是html,是SpringMVC 中的View部分



@ResponseBody

@ResponseBody一般会和Controller的方法结合,经过HTTP Request Header中的Accept内容,然后通过HttpMessageConverter转换为指定的格式,写入到Response对象的Body中。



**当返回数据不是html页面时候,而是某种数据格式(json、xml)**的时候使用,例子如下:

    @GetMapping(value = "test2")
    @ResponseBody
    public String test2(String msg, Model model){
        //在对test页面渲染通过ModeMap,向页面添加了一个msg,
        // 参数,它的值为参数msg的内容
        model.addAttribute("msg",msg);
        return "test"; //值test表示的是模板页面对应的名称
    }



加上@ResponseBody注解后,该方法返回的不是试图,而是我们方法要求的String,使用PostMan访问http://localhost:8888/test2?msg=hah,显示结果为:


a45ca980effda6505c5be3e765b520f4.png


注:此时方法中的return test 仅仅表示返回结果为test,而不是模板页面对应的名称。


:此时方法中的return test 仅仅表示返回结果为test,而不是模板页面对应的名称。

@RestControlle

@RestController是为了我们开发RESTful  Web Services,特别是在现在非常流行前后端分离,我们后端只需要返回数据例如返回json或者xml数据,此时``@RestController`就非常有用,只是返回数据对象,例子还是用**@Controller**中的例子不过就是controller的注释变为@RestController:

    @GetMapping(value = "rest/test")
    public String test(String msg, Model model){
        //在对test页面渲染通过ModeMap,向页面添加了一个msg,
        // 参数,它的值为参数msg的内容
        model.addAttribute("msg",msg);
        return "test"; //值test表示的是模板页面对应的名称
    }

返回的结果为:

:返回结果我们使用**@Controller+@ResponseBody的结果相同,实际上在SpringBoot官方解释中也是这样解释的:@RestController is a stereotype annotation that combines @ResponseBody and @Controller.大致意思是@RestControlle注解相当于@Controller+@ResponseBody**合作一起。


在@RestController注解下返回试图

但是如果我们想在**@RestController注解下返回试图,我们可以使用ModelAndView**,具体例子如下

    @GetMapping(value = "rest/main")
    public ModelAndView main(String msg){
        ModelAndView andView = new ModelAndView();
        andView.addObject("msg",msg);
        andView.setViewName("main");
        return andView;
    }


main.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org/">
<head>
    <meta charset="UTF-8">
    <title>Test</title>
</head>
<body>
    <h1>Main</h1>
    <div th:text="${msg}" ></div>
</body>
</html>


测试结果如下:

@Component


@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注,其作用是告知Spring要为这个类创建bean,需要路径扫描来自动侦测以及自动装配到Spring容器中

@Component
public class TestComponent {
    public void component(){
        System.out.println("my test component");
    }
}

查看是否注入容器的bean,我们直接在main方法查看

public static void main(String[] args) {
        ConfigurableApplicationContext applicationContext = SpringApplication.run(SpringBootPart31Application.class, args);
        //获取所有bean的名称
        String[] names = applicationContext.getBeanDefinitionNames();
        for(String name:names){
            if(name.startsWith("testComponent")){
                System.out.println(name);
            }
        }
    }


结果为,说明TestComponent类以及创建Bean注入容器:

@ComponentScan


就是自动扫描组件,该注解默认会扫描该类所在的包下所有的配置类,由SpringBoot源码可知@SpringBootApplication包含了@ComponentScan,部分源码如下:

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(excludeFilters = { @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
  @Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })
public @interface SpringBootApplication {
 /**
  * Exclude specific auto-configuration classes such that they will never be applied.
  * @return the classes to exclude
  */
 @AliasFor(annotation = EnableAutoConfiguration.class)
 Class<?>[] exclude() default {};


那例子说明,如图

因为**@SpringBootApplication注解在SpringBootPart31Application类上,因此会自动扫描com.learn.springboot包下需要自动侦测以及自动装配到Spring容器中的bean**。也可以自己指定扫描包

@ComponentScan(basePackages = {"com.learn.springboot2","com.learn.springboot"})

基于@Component扩展的注解


@Service


@Component注解的扩展,被@Service注解的POJO类表示Service层实现,从而见到该注解就想到Service层实现,使用方式和@Component相同,@Service的源码如下

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Service 


@Repository

@Component注解的扩展,被@Repository注解的POJO类表示DAO层实现,从而见到该注解就想到DAO层实现,使用方式和@Component相同;


目录
相关文章
|
2月前
|
XML Java 数据格式
SpringBoot入门(8) - 开发中还有哪些常用注解
SpringBoot入门(8) - 开发中还有哪些常用注解
60 0
|
19天前
|
Java Spring
【Spring】方法注解@Bean,配置类扫描路径
@Bean方法注解,如何在同一个类下面定义多个Bean对象,配置扫描路径
150 73
|
3月前
|
Java Spring
在使用Spring的`@Value`注解注入属性值时,有一些特殊字符需要注意
【10月更文挑战第9天】在使用Spring的`@Value`注解注入属性值时,需注意一些特殊字符的正确处理方法,包括空格、引号、反斜杠、新行、制表符、逗号、大括号、$、百分号及其他特殊字符。通过适当包裹或转义,确保这些字符能被正确解析和注入。
215 3
|
14天前
|
Java Spring 容器
【SpringFramework】Spring IoC-基于注解的实现
本文主要记录基于Spring注解实现IoC容器和DI相关知识。
45 21
|
19天前
|
存储 Java Spring
【Spring】获取Bean对象需要哪些注解
@Conntroller,@Service,@Repository,@Component,@Configuration,关于Bean对象的五个常用注解
|
19天前
|
Java Spring
【Spring配置】idea编码格式导致注解汉字无法保存
问题一:对于同一个项目,我们在使用idea的过程中,使用汉字注解完后,再打开该项目,汉字变成乱码问题二:本来a项目中,汉字注解调试好了,没有乱码了,但是创建出来的新的项目,写的注解又成乱码了。
|
2月前
|
XML JSON Java
SpringBoot必须掌握的常用注解!
SpringBoot必须掌握的常用注解!
85 4
SpringBoot必须掌握的常用注解!
|
2月前
|
前端开发 Java Spring
Spring MVC核心:深入理解@RequestMapping注解
在Spring MVC框架中,`@RequestMapping`注解是实现请求映射的核心,它将HTTP请求映射到控制器的处理方法上。本文将深入探讨`@RequestMapping`注解的各个方面,包括其注解的使用方法、如何与Spring MVC的其他组件协同工作,以及在实际开发中的应用案例。
49 4
|
2月前
|
前端开发 Java 开发者
Spring MVC中的请求映射:@RequestMapping注解深度解析
在Spring MVC框架中,`@RequestMapping`注解是实现请求映射的关键,它将HTTP请求映射到相应的处理器方法上。本文将深入探讨`@RequestMapping`注解的工作原理、使用方法以及最佳实践,为开发者提供一份详尽的技术干货。
165 2
|
2月前
|
前端开发 Java Spring
探索Spring MVC:@Controller注解的全面解析
在Spring MVC框架中,`@Controller`注解是构建Web应用程序的基石之一。它不仅简化了控制器的定义,还提供了一种优雅的方式来处理HTTP请求。本文将全面解析`@Controller`注解,包括其定义、用法、以及在Spring MVC中的作用。
68 2