创建SpringMvc项目
2018-10-13 06:27:53来源:博客园 阅读 ()
创建SpringMvc项目使用的配置,备注一下
web.xml:
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" id="WebApp_ID" version="4.0"> <display-name>MySpringMvcDemo</display-name> <!-- 配置一个servlet --> <!-- servlet的配置 --> <servlet> <!-- servlet的内部名称,自定义。尽量有意义 --> <servlet-name>springmvc</servlet-name> <!-- servlet的类全名: 包名+简单类名 --> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!-- 第一种:默认加载 /WEB-INF/[servlet-name]-servlet.xml ,使用这种第二种就可以删除--> <!-- 第二种:指定路径 --> <init-param> <param-name>contextConfigLocation</param-name> <!-- 设置SpringMVC配置文件的位置,注意该位置默认是src文件夹下 --> <param-value>classpath:springmvc-servlet.xml</param-value> </init-param> <!-- servlet 启动优先,一般填写1就可以了 --> <load-on-startup>1</load-on-startup> </servlet> <!-- servlet的映射配置 --> <servlet-mapping> <!-- servlet的内部名称,一定要和上面的内部名称保持一致!! --> <servlet-name>springmvc</servlet-name> <!-- servlet的映射路径(访问servlet的名称) ,据说是拦截所有静态文件的请求,如.js;.css文件等--> <url-pattern>/</url-pattern> </servlet-mapping> <!-- 设置默认页面,注意这个页面是直接在WebContent文件夹下的,如果是在WebContent下的view文件夹下就要配置成view\index.jsp,但是默认页面不要放在WEB-INF内 --> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>
springmvc-servlet.xml:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd"> <!-- 注意上面的也可以写成spring-context-4.3.xsd,如果不写则默认是用当前的版本 --> <!-- 配置自动扫描的包 --> <context:component-scan base-package="com.demo.springmvc" /> <!-- 配置视图解析器 如何把handler 方法返回值解析为实际的物理视图 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/views/" /> <property name="suffix" value=".jsp" /> </bean> </beans>
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- springboot2配置JavaMelody与springMVC配置JavaMelody 2020-06-11
- 项目经理说这种代码必须重构,我同意了,这代码是写的是有多 2020-06-11
- eclipse下创建Maven项目(包含webapp目录结构) 2020-06-09
- SpringBoot通过web页面动态控制定时任务的启动、停止、创建 2020-06-09
- 阿里巴巴26个屌炸天的开源项目,你知道几个? 2020-06-09
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash