3

XML を使用して Spring MVC アプリを構成する方法を既に学習したので、先に進むことにしました。

WebApplicationInitializer とアプリケーション構成での XML の最小化に関するドキュメントを読みました。しかし、サンプル アプリケーションのすべての準備が完了すると、404 ページが表示されました。

さらに、コードのスニペットを配置します。@ ベースのアプローチを適切に作成する方法についてアドバイスをください。

構成ファイル:

package com.onet.init;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.view.UrlBasedViewResolver;

@Configuration
@ComponentScan("com.onet")
@EnableWebMvc
public class BaseConfig {

    @Bean
    public UrlBasedViewResolver setupViewResolver() {
        UrlBasedViewResolver resolver = new UrlBasedViewResolver();
        resolver.setPrefix("/WEB-INF/views/");
        resolver.setSuffix(".jsp");
        return resolver;
    }

}

初期化子:

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletRegistration.Dynamic;

import org.springframework.web.WebApplicationInitializer;
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;
import org.springframework.web.servlet.DispatcherServlet;

public class Initializer implements WebApplicationInitializer {

    @Override
    public void onStartup(ServletContext servletContext) throws ServletException {
        AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
        ctx.register(BaseConfig.class);

        Dynamic servlet = servletContext.addServlet("dispatcher", new DispatcherServlet(ctx));
        servlet.addMapping("*.html");
        servlet.setLoadOnStartup(1);
    }

}

pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <groupId>oneTest</groupId>
    <artifactId>oneTest</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <packaging>war</packaging>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.1.1</version>
                <configuration>
                    <failOnMissingWebXml>false</failOnMissingWebXml>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.0.1</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>3.1.1.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>cglib</groupId>
            <artifactId>cglib-nodep</artifactId>
            <version>2.2.2</version>
        </dependency>
        <dependency>
            <groupId>jstl</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>
    </dependencies>

</project>

コントローラ:

package com.onet.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class HelloController {

    @RequestMapping(value="/hello")
    public ModelAndView goToHelloWorld() {
        return new ModelAndView("hello-world");
    }

}

index.jsp

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Home page</title>
</head>
<body>
<h1>Home page</h1>
<p>This is a home page.</p>
<p><a href="hello.html">Say Hello</a></p>
</body>
</html>

したがって、「Say Hello」リンクをクリックすると、404 が返されます。ドロップボックスからプロジェクト全体をダウンロードできます。

4

1 に答える 1

2

ドロップボックスでプロジェクトを確認しました。私には思えますが、プロジェクトの構造が間違っています。maven-scracture と eclipse-structure を混在させました。Maven を使用するときは、Web コンテンツをsrc/main/webapp...に入れWebContentます。このトピックの詳細については、こちらをご覧ください。

短縮版:

ファイルを から に移動して、WebContentsrc/main/webapp試行してください。

長いバージョン:

mvn package結果の *.war をディレクトリから実行して抽出すると/target、ディレクトリからのファイルが欠落していることがわかりますWebContent。Maven は、これらのファイルが にあることを期待していますsrc/main/webapp。Eclipse で「動的 Web プロジェクト」を作成することから始めたと思います。Eclipse は、*.jsp や co などのリソースを想定しています。に配置する必要があるWebContentため、呼び出しがindex.jsp機能します。しかし、春になると、hello-world.jspあるべき場所に配置されていないため、失敗します。

直し方:

ファイルを からWebContentに移動することから始めますsrc/main/webapp。次に実行しmvn eclipse:eclipse -Dwtpversion=2.0ます。Eclipse の構成 (.classpath、.project など) を生成します。Eclipse でプロジェクトを更新します。これで動作するはずです。

于 2012-11-19T20:07:45.510 に答える