这个问题之前曾经被问过,但他只是说,他解决了这个问题,这对他的行为来说是一个愚蠢的错误。这并没有太大的帮助。这就是我的浏览器渲染:Spring MVC中的JSP渲染HTML
这里是我的web.xml
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
SpringMVCpractice
index.html
index.htm
index.jsp
default.html
default.htm
default.jsp
dispatcher
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
/WEB-INF/dispatcher-servlet.xml
1
dispatcher
/*
*.jsp
/WEB-INF/jsps/
/WEB-INF/jsps/
的index.jsp
pageEncoding="UTF-8"%>
WelcomeHello World...
我使用的IntelliJ但我还检查它与Eclipse也得到了相同的结果。我也检查了它会多个浏览器。
*************************** NOTE ****************** *** 我加:
*.jsp
/WEB-INF/jsps/
/WEB-INF/jsps/
经过一番阅读,仍然得到结果。即使它不在那里也会发生同样的事情。
-------------------更新-----------------
调度-servlet.xml中
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd">
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
----------------- upate 2 ------------------
@Controller
public class IndexController {
@RequestMapping({"/","index"})
public String index(Model model){
return "index";
}
}
2015-08-27
Drew1208
+0
如何部署和运行应用程序? –
+0
intellij中的Tomcat –
+0
向我们展示您的调度程序servlet.xml –