gpt4 book ai didi

Spring MVC 请求的资源不可用

转载 作者:行者123 更新时间:2023-11-28 22:50:16 29 4
gpt4 key购买 nike

我有一个带有单个 Controller 类 (MainController.class) 的 war 项目,它带有一个公共(public)函数 index(),它返回一个字符串,这是我最后一次检查您要转发到的 View 的名称 - 和一个 jsp命名为“index.jsp”。 View 在/main/webapp/WEB-INF/views/jsp/中。主 Controller .java:

@Controller
public class MainController
{
@Autowired
private ApplicationContextProvider mObjApplicationContextProvider;

@Autowired
private ScheduleService mObjScheduleService;

protected ApplicationContext getApplicationContext()
{
return(getApplicationContextProvider().getApplicationContext());
}

protected ApplicationContextProvider getApplicationContextProvider()
{
return(mObjApplicationContextProvider);
}

protected Object getBean(final Class<?> clsBean)
{
return(getApplicationContext().getBean(clsBean));
}

protected Object getBean(final String sBeanName)
{
return(getApplicationContext().getBean(sBeanName));
}

protected ScheduleService getScheduleService()
{
return(mObjScheduleService);
}

@RequestMapping(value="/")
public String index()
{
return("index");
}
}

索引.jsp:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
Hello World!
</body>
</html>

我的配置 xml 文件:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
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-4.0.xsd">

<context:component-scan base-package="net.draconia.church" />

<bean class="net.draconia.ApplicationContextProvider" />

<bean class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" id="dataSource">
<property name="driverClassName" value="com.mysql.cj.jdbc.Driver" />
<property name="url" value="jdbc:mysql:sql9.freemysqlhosting.net/sql9158326" />
<property name="username" value="sql9158326" />
<property name="password" value="MqX7sbacgB" />
</bean>

<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/views/jsp/" />
<property name="suffix" value=".jsp" />
</bean>

<mvc:resources mapping="/resources/**" location="/resources/" />

<mvc:annotation-driven />

</beans>

出于某种原因,当我转到“http://localhost:8080/Ushering/”时,我的浏览器出现错误:404 - “请求的资源不可用。”

我在日志中找不到任何东西(但如果需要可以发布)告诉我什么文件或资源不可用。它似乎能够找到 Controller ,因为在一个日志文件中它提到了 Controller 的请求映射。会是什么?

编辑:WAR 文件在 pom 文件中定义为 Ushering,在 web.xml 中也定义为项目名称,因此我认为上下文也将是 Ushering 以及 Spring 应用程序方面的任何内容将在/Ushering 之后,所以如果我将请求映射设置为/Hello,那么 URL 应该是 localhost:8080/Ushering/Hello。

编辑:我的 Web.xml 文件

<?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" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>CrunchifySpringMVCTutorial</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>

<servlet>
<servlet-name>Ushering</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/Ushering-config.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Ushering</servlet-name>
<url-pattern>/s</url-pattern>
</servlet-mapping>
</web-app>

最佳答案

如果您查看 MainController 类,就会发现只有一种请求处理方法返回“索引”。它映射到“/”,这意味着当您键入 localhost:8080 时,它会返回给您索引文件。因此,不要键入 localhost:8080/Ushering,而是输入 localhost:8080。它会起作用。但是如果你想输入 localhost:8080/Ushering 然后将 Controller 文件中的请求映射更改为以下。

@RequestMapping(value="/Ushering")

public String index()
{
return("index");
}

它会返回索引文件。

关于Spring MVC 请求的资源不可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42231830/

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