xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/beans http://www.spring...
1、所有的视图解析器尝试是否能根据当前返回值得到View对象 2、得到了redirect:/main.html--> Thymeleaf newRedirectView() 3、ContentNegotiationViewResolver 里面包含了下面所有的视图解析器,内部还是利用下面所有视图解析器得到视图对象。 4、view.render(mv.getModelInternal(), request, response); 视图对象调用自...
@SpringBootApplication : 是Sprnig Boot项目的核心注解,目的是开启自动配置;它是一个组合注解,由(@ComponentScan,@SpringBootConfiguration,@EnableAutoConfiguration)组成,他们各自的作用如下: 一,@ComponentScan @ComponentScan告诉Spring 哪个packages 的用注解标识的类 会被spring自动扫描并且装入bean容器。 使用过spring...