gpt4 book ai didi

java - 为什么我的 spring mvc View 无法加载?

转载 作者:行者123 更新时间:2023-11-30 03:19:10 24 4
gpt4 key购买 nike

我是 Spring MVC 新手。我目前使用的是netbeans 8.0.2。以及 spring mvc 插件。从我在项目的“库”部分下看到的 jar 文件来看,我似乎正在使用 spring mvc 4.0.1。

我可以从tomcat服务器甚至glassfish加载index.jsp页面,但是如果我应该在目录结构WEB-INFO>jsp>response.jsp下创建另一个.jsp文件一个例子。我从服务器收到错误 404。这可能是一个极其简单的修复,但到目前为止还没有成功。

我怀疑它与我的 Controller 和 [springapp]-servlet.xml 文件有关。我在网上看到的大多数示例都使用 spring mvc 3.x 并避免在 Controller 设置中使用注释方法,乍一看后者对我来说似乎更容易。然后,这些示例将继续向上述 xml 文件添加几行。但是,我认为通过使用注释 Controller 设置,spring mvc 会自动检测我的 Controller 。不建议使用注解方式吗?

我的配置文件如下:

web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>springapp</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>2</load-on-startup>

</servlet>
<servlet-mapping>
<servlet-name>springapp</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>redirect.jsp</welcome-file>
</welcome-file-list>
</web-app>

springapp-servlet.xml:

<?xml version='1.0' encoding='UTF-8' ?>
<!-- was: <?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:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-40.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">


<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>


<!--
Most controllers will use the ControllerClassNameHandlerMapping above, but
for the index controller we are using ParameterizableViewController, so we must
define an explicit mapping for it.
-->
<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="index.htm">indexController</prop>
</props>
</property>
</bean>


<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp" />

<!--
The index controller.
-->
<bean name="indexController"
class="org.springframework.web.servlet.mvc.ParameterizableViewController"
p:viewName="index" />



</beans>

其他相关文件:

Controller :

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
//import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
//import org.springframework.web.bind.annotation.RequestParam;

/**
*
* @author macj7
*/

@Controller
public class HelloController {


@RequestMapping( value = "/response", method = RequestMethod.GET)
public String index( Model model) {
String name = "World";
model.addAttribute("name", name );
return "response";
}

}

响应.jsp:

<%-- 
Document : response
Created on : Jul 31, 2015, 1:25:19 PM
Author : macj7
--%>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Spring Web MVC </title>
</head>
<body>
<h1> th:text= "Hello, ${name}!" </h1>
</body>
</html>

重定向.jsp:

<%--
Views should be stored under the WEB-INF folder so that
they are not accessible except through controller process.

This JSP is here to provide a redirect to the dispatcher
servlet but should be the only JSP outside of WEB-INF.
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<% response.sendRedirect("index.htm"); %>

如果这个问题有解决方案或者提供更多信息需要请告诉我。我也想对任何答案进行解释因为我正在尝试学习,而不仅仅是复制和粘贴解决方案。这是我第一次尝试使用 java 创建 Web 应用程序,我必须说光是配置就显得相当令人畏惧。

预先感谢您的时间和耐心。

最佳答案

我认为在 web.xml 文件的欢迎文件列表中,您应该提供 Spring Controller 请求映射而不是 jsp 文件名,如下所示。

<welcome-file-list>
<welcome-file>/response</welcome-file>
</welcome-file-list>

关于java - 为什么我的 spring mvc View 无法加载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31762228/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com