HTTP 错误 503:无法访问 /。原因服务不可用

HTTP ERROR 503: can not access /. Reason Service Unavailable

我的代码在github

https://github.com/shiblybcc/blog-aggregator

我刚刚创建了一个 spring 框架项目。这是我的 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>Course Rating</display-name>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
</web-app>

在我 运行 我的码头服务器之后,它完美地工作并显示了 index.jsp 文件的内容。但是,如果我在 web.xml 文件

中添加以下代码
<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>*.html</url-pattern>
    <url-pattern>*.htm</url-pattern>
    <url-pattern>*.json</url-pattern>
    <url-pattern>*.xml</url-pattern>
</servlet-mapping>

我收到错误

HTTP ERROR: 503    
Problem accessing /. Reason:    
    Service Unavailable

我正在学习教程,他们也在做同样的事情。我不明白我的代码有什么问题。提前致谢。

好的,明白了,当你调用 localhost:8080/index.htm 时发生了什么,servlet 名称 "dispatcher" 被执行了,因为 index.html 没有映射存在,您将无法看到 index.html 页面。

要让它发挥作用,您需要付出更多的努力。

1).将您的 index.html 放在 WEB-INF 文件夹下。

2).创建控制器:

package com.test.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod; 
import org.springframework.ui.ModelMap;

@Controller
@RequestMapping("/index")
public class IndexPageController{

    @RequestMapping(method = RequestMethod.GET)
public String showIndexPage(ModelMap model) {
  return "index";
 }
}

3).如下创建 mvc-dispatcher-servlet.xml 并将其放在 WEB-INF 文件夹下:

 <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:mvc="http://www.springframework.org/schema/mvc"   
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans     
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.2.xsd">
       <mvc:annotation-driven></mvc:annotation-driven>
       <context:component-scan base-package="com.test.controller" />

   <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
      <property name="prefix" value="/WEB-INF/" />
      <property name="suffix" value=".html" />
   </bean>

    </beans>

4).将您的 web.xml 编辑为:

<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>
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/mvc-dispatcher-servlet.xml</param-value>
      </context-param>

      <listener>
            <listener-class>
            org.springframework.web.context.ContextLoaderListener
            </listener-class>
      </listener>

经过一整天的研究,我在这里找到了解决方案 Getting Error scanning file when running jetty 9 on java 8 using the maven jetty plugin

我还更新了 jetty、maven 和 tomcat。我现在的 pom.xml

<build>
    <plugins>
        <plugin>
            <groupId>org.eclipse.jetty</groupId>
            <artifactId>jetty-maven-plugin</artifactId>
            <dependencies>
                <dependency>
                    <groupId>org.ow2.asm</groupId>
                    <artifactId>asm</artifactId>
                    <version>5.0.3</version>
                </dependency>
                <dependency>
                    <groupId>org.ow2.asm</groupId>
                    <artifactId>asm-commons</artifactId>
                    <version>5.0.3</version>
                </dependency>
            </dependencies>
        </plugin>
        <plugin>
            <groupId>org.apache.tomcat.maven</groupId>
            <artifactId>tomcat7-maven-plugin</artifactId>
            <version>2.3</version>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.3</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
    </plugins>
</build>

更新所有内容后,它现在工作正常。