博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringMVC项目配置
阅读量:5265 次
发布时间:2019-06-14

本文共 5183 字,大约阅读时间需要 17 分钟。

一、创建一个maven项目

1、new一个maven项目,选择next,如图:

 

2、勾选Create a simple project(skip archetype selection)

 

3、填写Group Id(项目的唯一标识)和Artidact Id(项目名称),选择Packaging为war,然后直接Finish。

 

4、当前该项目的结构如下:

 

5、在webapp下新建文件夹WEB-INF

 

二、添加并编写相关配置文件

1、在WEB-INF下新建web.xml文件

 

2、编写web.xml内容

1 
2
5 6
7
8
org.springframework.web.context.ContextLoaderListener
9
10
11
org.springframework.web.util.IntrospectorCleanupListener
12
13 14
15
16
encoding
17
org.springframework.web.filter.CharacterEncodingFilter
18
19
encoding
20
UTF-8
21
22
23
24
encoding
25
/*
26
27 28
29
30
springmvc
31
org.springframework.web.servlet.DispatcherServlet
32
33
namespace
34
spring-servlet
35
36
1
37
38
39
springmvc
40
/
41
42

在这个配置中,我们规定了 DispatcherServlet 的关联 XML 文件名称叫做 spring-servlet。注意,这里的路径是相对于web.xml来说的,也就是说,这个文件也在WEB-INF的根目录下。所以,我们需要在WEB-INF的根目录下新建一个spring-servlet.xml文件。

 

3、spring-servlet.xml配置如下:

1 
2
14 15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30 31

根据配置,有三个需要注意的地方。

  (1)它会扫描 com.springmvc 包下所有的Java类,但凡是遇到有注解的,比如@Controller , @Service , @Autowired ,就会将它们加入到Spring的bean工厂里面去。

  (2)所有的静态资源文件,比如说 js , css , images 都需要放在/resources目录下。

  (3)所有的展示页面,比如jsp文件,都需要放置在/WEB-INF/view目录下。

 

4、创建相关目录后项目结构如下:

 

5、添加applicationContext.xml

1 
2
17 18

 

6、导入jar包

1 
2
4.0.0
3
com.cn
4
SpringMVC
5
0.0.1-SNAPSHOT
6
war
7
8
9
10
org.springframework
11
spring-beans
12
4.3.2.RELEASE
13
14
15
org.springframework
16
spring-core
17
4.3.2.RELEASE
18
19
20
org.springframework
21
spring-jdbc
22
4.3.2.RELEASE
23
24
25
org.springframework
26
spring-context-support
27
4.3.2.RELEASE
28
29
30
org.springframework
31
spring-context
32
4.3.2.RELEASE
33
34
35
36
commons-logging
37
commons-logging
38
39
40
41
42
org.springframework
43
spring-expression
44
4.3.2.RELEASE
45
46
47
org.springframework
48
spring-webmvc
49
4.3.2.RELEASE
50
51
52
org.springframework
53
spring-web
54
4.3.2.RELEASE
55
56
57
org.springframework
58
spring-tx
59
4.3.2.RELEASE
60
61
62

 

三、测试

a)新增一个Controller

1 package com.springmvc.controller; 2  3 import org.springframework.stereotype.Controller; 4 import org.springframework.web.bind.annotation.RequestMapping; 5  6 @Controller 7 public class HelloController { 8  9     @RequestMapping("hello")10     public String hello(){11         System.out.println("hello");12         return "helloMVC";13     }14 }

 

b)在view里新增一个简单helloMVC.html

1  2  3  4 
5 Insert title here 6 7 8

hello MVC

9 10

 

c)把该项目加载到tomcat

 

d)启动项目,不报错。在地址栏输入:http://localhost:8080/SpringMVC/hello,结果如下:

 

转载于:https://www.cnblogs.com/zq-boke/p/5842645.html

你可能感兴趣的文章
HDU 2548 A strange lift
查看>>
Linux服务器在外地,如何用eclipse连接hdfs
查看>>
react双组件传值和传参
查看>>
[Kaggle] Sentiment Analysis on Movie Reviews
查看>>
价值观
查看>>
mongodb命令----批量更改文档字段名
查看>>
MacOS copy图标shell脚本
查看>>
国外常见互联网盈利创新模式
查看>>
Oracle-05
查看>>
linux grep 搜索查找
查看>>
Not enough free disk space on disk '/boot'(转载)
查看>>
android 签名
查看>>
android:scaleType属性
查看>>
SuperEPC
查看>>
mysql-5.7 innodb 的并行任务调度详解
查看>>
shell脚本
查看>>
Upload Image to .NET Core 2.1 API
查看>>
Js时间处理
查看>>
Java项目xml相关配置
查看>>
三维变换概述
查看>>