實現Spring 4 MVC HelloWorld Tutorial – Full XML Example

參考連接

http://websystique.com/springmvc/spring-4-mvc-helloworld-tutorial-full-example/java

 

環境:

Eclipse Java EE IDE for Web Developers.web

 

Version: Neon Release (4.6.0)spring

Build id: 20160613-1800tomcat

 

project結構圖:

 

其中建立maven項目後,紅色框框裏面的內容是須要手動建立。mvc

利用maven install生成war文件,而後在tomcat的webapps運行,經過url能夠訪問。app

 

另外建立工程過程當中遇到的問題:eclipse

原始的web.xml中的內容:webapp

<web-app id="WebApp_ID" version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

須要修改成:maven

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xmlns="http://java.sun.com/xml/ns/javaee" 
	xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 
id="WebApp_ID" version="2.5">

不然會有報錯。ui

緣由爲eclipse java ee默認的Dynamic Web Module版本和原始的web.xml指定的版本不一致

相關文章
相關標籤/搜索