SpringMVC編程式配置(5.0.1版本)
編程式HelloWord演示
1 創(chuàng)建一個Maven-webapp工程。
在pom.xml加入以下依賴励负。(我為了方便添加了Tomcat插件,這個看你個人喜好)
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.0.1.RELEASE</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>springmvc</finalName>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<configuration>
<port>7080</port>
<uriEncoding>UTF-8</uriEncoding>
<path>/</path>
</configuration>
</plugin>
</plugins>
</build>
編程式編寫SpringMVC的配置
一般傳統(tǒng)的SpingMVC需要在web.xml中設(shè)定,還需要配置一個的XML的配置文件來完成等等一系列的操作。但是現(xiàn)在不需要再那么繁瑣纲刀、在代碼中就可以設(shè)定好。最主要的是涉及到兩個類担平,當(dāng)然遠(yuǎn)遠(yuǎn)不止只有這些示绊,這里只是為了簡單的演示。
更加詳細(xì)的學(xué)習(xí)可以到Spring的官網(wǎng)學(xué)習(xí)暂论,點擊這里你可以詳細(xì)的學(xué)習(xí)SpringMVC的內(nèi)容面褐。
類名 | 主要作用 |
---|---|
WebMvcConfigurer | 配置SpringMVC |
AbstractAnnotationConfigDispatcherServletInitializer | 初始化DispatcherServlet |
實現(xiàn)WebMvcConfigurer接口
配置SpringMVC其實很簡單,只要實現(xiàn)WebMvcConfigurer接口 覆蓋該接口中的方法即可完成配置取胎,我這里為了簡單的演示HelloWord所以不配置任何的東西展哭。比如攔截器、視圖控制器等 只需要覆蓋這些方法即可完成闻蛀。
package com.chenzhipeng.springmvc.config;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.*;
/**
* <p>Title:WebConfig</p>
* <p>Description:SpringMVC的配置項</p>
* @version V1.0
* @author ZhiPeng_Chen
* @date: 2017/11/23
*/
@Configuration
@EnableWebMvc
@ComponentScan("com.chenzhipeng.springmvc.controller")
public class SpringMvcConfig implements WebMvcConfigurer {
}
初始化DispatcherServlet
初始化DispatcherServlet匪傍,這個Servlet想必大家都知道,好理解點就相當(dāng)于SpringMVC的中央處理器觉痛,因為不管你做什么樣的交互都需要進(jìn)過它來完成役衡。繼承AbstractAnnotationConfigDispatcherServletInitializer
(名字有點長)覆蓋其3個方法即可。
package com.chenzhipeng.springmvc.servlet;
import com.chenzhipeng.springmvc.config.SpringMvcConfig;
import org.springframework.lang.Nullable;
import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;
/**
* <p>Title:SpringMVCInitializer</p>
* <p>Description:SpingMVC初始化DispatcherServlet</p>
* @version V1.0
* @author ZhiPeng_Chen
* @date: 2017/11/23
*/
public class SpringMVCInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
@Nullable
protected Class<?>[] getRootConfigClasses() {
return null;
}
@Nullable
protected Class<?>[] getServletConfigClasses() {
return new Class[] { SpringMvcConfig.class };
}
protected String[] getServletMappings() {
return new String[] { "/" };
}
}
可以看到在getServletConfigClasses()的方法中薪棒,它拿到了我的配置類進(jìn)行初始化手蝎。
編寫控制器
因為我現(xiàn)在所在的包已經(jīng)通過實現(xiàn)WebMvcConfigurer接口的時候榕莺,使用了@ComponentScan注解進(jìn)行掃描過了,所以是被發(fā)現(xiàn)的棵介。
package com.chenzhipeng.springmvc.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>Title:HelloWordController</p>
* <p>Description:HelloWord控制器</p>
* @version V1.0
* @author ZhiPeng_Chen
* @date: 2017/11/23
*/
@RestController
public class HelloWordController {
@GetMapping("/hello")
public String hello() {
return "Hello SpringMVC!";
}
}
如果對注解不理解的話钉鸯,可以參考Spring的官網(wǎng)查看注解的解釋和定義。
運行程序
啟動Tomcat發(fā)現(xiàn)hello已經(jīng)映射進(jìn)來了
在游覽器中輸入:http://127.0.0.1:7080/hello
OK邮辽!整個流程就完成了唠雕。