当前位置: 首页 > 知识库问答 >
问题:

欢迎文件在spring中不支持html文件

鞠通
2023-03-14

我已经在网络上提供了我的欢迎文件.xml但是在运行应用程序时,它显示 404 错误 http://172.16.2.16:8080/sampletest/

这是一个Spring应用程序。

网络.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_3_1.xsd"
    id="WebApp_ID" version="3.1">
    <display-name>sampletest</display-name>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>

    <!-- Spring MVC -->
    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

我正在使用eclipse luna,java 8,tomcat 8和maven框架。index.html 文件直接位于 webapp 文件夹下,web.xml 位于 webapp/WEB-INF 文件夹下。如果我使用索引.jsp而不是索引.html,它就可以工作。然后欢迎页面将使用 http://172.16.2.16:8080/sampletest/ 加载

问题仅与欢迎文件有关。否则Spring配置正常工作。http://localhost:8080/sampletest/test/ 将从数据库加载数据。

控制台中的错误日志

......................

Jul 10, 2014 12:38:42 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 4963 ms
Jul 10, 2014 12:38:42 PM org.springframework.web.servlet.DispatcherServlet noHandlerFound
WARNING: No mapping found for HTTP request with URI [/sampletest/] in DispatcherServlet with name 'dispatcher'

索引.html

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>

</body>
</html>

调度员

<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"
    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-3.1.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">

    <context:annotation-config />

    <mvc:annotation-driven />

    <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />

    <context:component-scan base-package="com.sample.test" />

    <tx:annotation-driven transaction-manager="transactionManager" />

    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
        <property name="packagesToScan">
            <array>
                <value>com.sample.test.domain</value>
            </array>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.format_sql">false</prop>
                <prop key="hibernate.use_sql_comments">false</prop>
                <prop key="hibernate.hbm2ddl.auto">update</prop>
                <prop key="hibernate.connection.characterEncoding">UTF-8</prop>
                <prop key="hibernate.connection.useUnicode">true</prop>
                <prop key="hibernate.connection.CharSet">UTF-8</prop>
            </props>
        </property>
        <property name="dataSource">
            <ref bean="dataSource" />
        </property>
    </bean>

    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.jdbc.Driver" />
        <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/sampletest?autoConnect=true" />
        <property name="user" value="root" />
        <property name="password" value="root" />
    </bean>

    <bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

    <!-- HibernateTransactionManager -->
    <bean id="transactionManager"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

    <bean id="openSessionInViewInterceptor"
        class="org.springframework.orm.hibernate3.support.OpenSessionInViewInterceptor">
        <property name="sessionFactory">
            <ref local="sessionFactory" />
        </property>
        <property name="flushModeName">
            <value>FLUSH_AUTO</value>
        </property>
    </bean>
</beans>

控制器

package com.sample.test.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import com.sample.test.dto.Response;
import com.sample.test.facade.AccelFlowFacade;

@Controller
public class SampleTestController {

    @Autowired
    @Qualifier("sampleTestFacade")
    SampleTestFacade sampleTestFacade;

    public SampleTestFacade getSampleTestFacade() {
        return sampleTestFacade;
    }

    public void setSampleTestFacade(SampleTestFacade sampleTestFacade) {
        this.sampleTestFacade= sampleTestFacade;
    }

    @RequestMapping(value = "/test", method = RequestMethod.GET)
    public @ResponseBody Response display() throws Exception {
        sampleTestFacade.disaply();
        Response res = new Response();
        return res;
    }
}

共有3个答案

白昊东
2023-03-14

默认情况下,在启动时,所有传入的请求都映射到您在 Web 中写入的“/”模式.xml:

<servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

更新:

>

  • 尝试为默认视图映射控制器方法:

    @RequestMapping(value = "/", method = GET)
    public String welcome() {
        return "index";
    }
    

    将viewresolver添加到dispather-servlet.xml:

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

    从web.xml中删除欢迎文件,因为默认情况下,spring会自动搜索索引页面:

    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    

  • 薛墨一
    2023-03-14
    匿名用户

    您已将所有传入请求映射到此处的调度程序

    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    

    因此,您对应用程序的所有 URL 请求都进入调度程序,因为“/”映射所有传入请求。检查应用程序服务器日志中的堆栈跟踪

    更新:

    您会收到以下警告,因为没有“/”模式的处理程序,

    警告:在名为“dispatcher”的DispatcherServlet中找不到URI为[/AccelFlow/]的HTTP请求的映射

    您可以选择以下任一选项,

    1. 将带有“/”的url映射到控制器
    2. 向spring调度程序添加特定的URL模式,例如<code>。htm或.do

    修改您的web.xml,

    <servlet-mapping>
            <servlet-name>dispatcher</servlet-name>
            <url-pattern>*.htm</url-pattern>
        </servlet-mapping>  
    

    在您的控制器中,

    @RequestMapping(value = "/test.htm", method = RequestMethod.GET)
    public @ResponseBody Response display() throws Exception {
        accelFlowFacade.disaply();
        Response res = new Response();
        return res;
    }
    

    淳于宏伯
    2023-03-14

    尝试添加

    详情请看这里。

     类似资料:
    • Web 应用程序开发人员可以在 Web 应用程序部署描述文件中定义一个称为欢迎文件的局部 URI 有序列表。在 Web 应用程序部署描述文件模式中描述了部署描述文件中欢迎文件列表的语法。 这种机制的目的是,当一个对应到 WAR文件中一个目录条目的请求 URI没有映射到一个 Web 组件时,允许部署者为容器用于添加 URI 指定局部URI 有序列表。这种请求被认为是有效的局部请求。 通过下面常见的例

    • 几乎所有的事情都很顺利,我可以打开和,我来到controller.java。但是当我打开时,我得到一个404错误。 我将Eclipse与一个“动态Web项目”一起使用,controller.java文件位于/src(默认包)下,Web.xml文件位于/webcontent/web-inf下。 我希望你能给我点提示。

    • 希望你能帮忙,因为据我所知,这是正确的设置(但请证明我错了)。 我的Spring3 mvc项目配置如下: 现在,如果输入控制器的url(localhost:8080/myservlet/frontpage),控制器将工作,并且显示视图,但是当我第一次启动时,得到的是404而不是index.jsp页面。我尝试在index.jsp中添加一个前导斜杠,但这没有什么区别。 我一定是在什么地方犯了小学生的错

    • 我是StackOverflow的新手,请尽可能清楚。 我有一个接受多文件输入的控制器, FE控制器它工作得很好,但如果我调用我的应用程序的RestController,它就不起作用。RestController 这是我在@Request estBody Request@Request estBody上的请求。 我尝试了不同的消费,如消费=“多部分/ *”,但它们不起作用。 您能给我一些建议,说明我

    • 我想为我的机器人制作一个命令,在其中我们可以配置机器人可以发送的欢迎消息。因此,配置的工作原理如下:

    • 我正在实现如下所示的一个Spring集成工作流程。 现在,完成上述流程后,我需要将移动到一个归档目录。决定目标目录的决定基于消息标头,此标头添加到流程中的步骤中。为了移动这些文件,我创建了另一个流,如下代码所示 选择器方法 但是,正如该流所期望的那样,文件移动不会完成,因为所述头没有出现在流执行中。 那么,如何在报表文件创建后执行来实现这一目标呢?