SpringMVC配置(一)
发表于更新于
字数总计:706阅读时长:3分钟阅读量: 成都
SpringMVC基础配置
Spring-MVC
之前使用servlet来做表现层非常繁琐,使用spring-mvc能够让表现层的编写更简单
创建Spring-MVC项目
新建模块
使用IntelliJ IDEA创建一个maven的web项目
导入所需坐标
Spring-MVC需要spring-webmvc坐标,我这里使用5.2.10.RELEASE
版本,导入sevlet坐标,我这里使用3.1.0
,因为这里使用的servlet会和后面的tomcat冲突,所以需要配置作用域
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.2.10.RELEASE</version> </dependency>
<dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>provided</scope> </dependency>
|
创建源码目录
创建源码目录并增加controller包与config包
创建控制器
创建org.example.controller.UserController控制器
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| package org.example.controller;
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody;
@Controller public class UserController { @RequestMapping("/user/save") @ResponseBody public String save() { System.out.println("/user/save"); return "{\"username\":\"John\"}"; } }
|
创建配置类
创建org.example.config.SpringMVCConfig配置类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| package org.example.config;
import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan({"org.example.controller"}) public class SpringMVCConfig { }
|
创建org.example.config.ServletControllerInitConfig配置类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| package org.example.config;
import org.springframework.web.context.WebApplicationContext; import org.springframework.web.context.support.AnnotationConfigWebApplicationContext; import org.springframework.web.servlet.support.AbstractDispatcherServletInitializer;
public class ServletControllerInitConfig extends AbstractDispatcherServletInitializer { protected WebApplicationContext createServletApplicationContext() { AnnotationConfigWebApplicationContext context = new AnnotationConfigWebApplicationContext(); context.register(SpringMVCConfig.class); return context; }
protected String[] getServletMappings() { return new String[]{"/"}; }
protected WebApplicationContext createRootApplicationContext() { return null; } }
|
配置Maven插件
配置maven的tomcat插件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| // 根节点下添加 <build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.1</version> <configuration> <port>80</port> <path>/</path> </configuration> </plugin> </plugins> </build>
|
运行配置
配置IntelliJ IDEA运行调试配置
运行访问http://127.0.0.1:80/user/save
出现以下结果表示成功