2

我确信我在某处设置错误,但我无法弄清楚我尝试遵循多个教程和解决方案(viralpatel.netstackoverlow 问题另一个 stackoverflow 问题)的位置,但我无法将简单的 HelloWorld Spring MVC 部署到 tomcat .

我在多台机器(windows 7 和 os x 10.7)上尝试了多个教程,但我最终遇到了同样的问题。我关注的主要教程是mykong Spring 3 MVC hello World 示例,我什至尝试下载提供的源代码,但仍然无法使其工作(这变得非常令人沮丧)。

我的服务器是 apache-tomcat-6.0.36,它似乎可以正确部署到 tomcat,但我无法访问任何页面(我什至尝试将纯 html 页面放在根目录中,但仍然出现 404 错误)但是如果我在 webapps 目录中手动创建一个新文件夹“test”并将 index.html 放在那里,然后localhost:8081/test/工作正常。我也尝试过 Tomcat 7,但没有任何区别。

这是我的项目结构:

项目结构

这是我的 web.xml:

 <web-app id="WebApp_ID" version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

    <display-name>Spring Web MVC Application</display-name>

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

    <servlet-mapping>
        <servlet-name>mvc-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>

</web-app>

这是我的 mvc-dispatcher-servlet.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"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans     
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <context:component-scan base-package="com.mkyong.common.controller" />

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

</beans>

这是控制器:

package com.mkyong.common.controller;

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

@Controller
@RequestMapping("/welcome")
public class HelloController {

    @RequestMapping(method = RequestMethod.GET)
    public String printWelcome(ModelMap model) {

        model.addAttribute("message", "Spring 3 MVC Hello World");
        return "hello";

    }

}

你好.jsp:

<html>
<body>
    <h1>Message : ${message}</h1>   
</body>
</html>

解决方案

正如 duffymo 指出的那样,我的应用程序没有正确部署,所以我在 eclipse 中右键单击该项目并作为“WAR”文件导出到我的 tomcat webapps 目录,它现在正在工作

4

1 回答 1

4

您没有正确打包和部署您的应用程序。

我建议您将您的应用程序打包到适当的 WAR 文件中,将其放在 /webapps 文件夹中,然后启动 Tomcat。

如果包名为 foo.war,您的 URL 将是:

http://localhost:8080/foo/welcome

如果您的回答是“我这样做了,但没有用”,那么答案是“您仍然做错了”。

于 2013-04-30T11:50:34.083 回答