2012-03-24 7 views
2

私はSpring 3.1.1の新機能「Javaベースの設定」を使用しています。 新しいコンセプトをテストするための小さなデモを作成する際に問題に直面しました。私が要求したとき、私は、Tomcatの上で、私の "springway.war" を展開Spring 3.1.1 Javaベースのコンフィグレーションの問題

"にhttp:// localhost:8080/springway /" - >私は

私は私と確信している "404は、HTTPステータス" 痛風何かを逃したが、私はそれを把握できなかった。 私はSpringのサイト上にある "GreenHouse"の例を見てきましたが、私はまだ同じ問題を抱えています。

package config; 

import java.util.List; 

import javax.inject.Inject; 

import org.springframework.context.annotation.Bean; 
import org.springframework.context.annotation.Configuration; 
import org.springframework.context.support.ReloadableResourceBundleMessageSource; 
import org.springframework.core.env.Environment; 
import org.springframework.http.converter.HttpMessageConverter; 
import org.springframework.http.converter.json.MappingJacksonHttpMessageConverter; 

import org.springframework.validation.Validator; 
import org.springframework.validation.beanvalidation.LocalValidatorFactoryBean; 

import org.springframework.web.multipart.MultipartResolver; 
import org.springframework.web.multipart.commons.CommonsMultipartResolver; 
import org.springframework.web.servlet.ViewResolver; 
import org.springframework.web.servlet.config.annotation.EnableWebMvc; 

import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; 
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; 
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; 
import org.springframework.web.servlet.view.UrlBasedViewResolver; 
import org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer; 
import org.springframework.web.servlet.view.freemarker.FreeMarkerView; 
import org.springframework.web.servlet.view.tiles2.TilesConfigurer; 
import org.springframework.web.servlet.view.tiles2.TilesView; 

@Configuration 
@EnableWebMvc 
public class WebConfig extends WebMvcConfigurerAdapter { 

    @Inject 
    private Environment environment; 

    public void addResourceHandlers(ResourceHandlerRegistry registry) { 
     registry.addResourceHandler("/resources/**").addResourceLocations("/resources/"); 
    } 

    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) { 
     converters.add(new MappingJacksonHttpMessageConverter()); 
    } 


    /** 
    * ViewResolver configuration required to work with Tiles2-based views. 
    */ 
    @Bean 
    public ViewResolver viewResolver() { 
     UrlBasedViewResolver viewResolver = new UrlBasedViewResolver(); 
     viewResolver.setViewClass(FreeMarkerView.class); 
     return viewResolver; 
    } 

    /** 
    * Configures Tiles at application startup. 
    */ 
    @Bean 
    public TilesConfigurer tilesConfigurer() { 
     TilesConfigurer configurer = new TilesConfigurer(); 
     configurer.setDefinitions(new String[]{ 
       "/WEB-INF/layouts/tiles.xml", 
       "/WEB-INF/views/**/tiles.xml" 
     }); 
     configurer.setCheckRefresh(true); 
     return configurer; 
    } 

// @Bean 
// public FreeMarkerConfigurer freeMarkerConfigurer() { 
//  FreeMarkerConfigurer configurer = new FreeMarkerConfigurer(); 
//  configurer.setTemplateLoaderPath(
// 
//    "/WEB-INF/views/**/freemarker.xml"); 
////  configurer.set(true); 
//  return configurer; 
// } 

    @Bean 
    public MultipartResolver multipartResolver() { 
     CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver(); 
     multipartResolver.setMaxUploadSize(500000); 
     return multipartResolver; 
    } 
} 

とweb.xml:

<?xml version="1.0" encoding="UTF-8"?> 
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" 
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> 

    <!-- Java-based annotation-driven Spring container definition --> 
    <context-param> 
     <param-name>contextClass</param-name> 
     <param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value> 
    </context-param> 

    <!-- Location of Java @Configuration classes that configure the components that makeup this application --> 
    <context-param> 
     <param-name>contextConfigLocation</param-name> 
     <param-value>config</param-value> 
    </context-param> 

    <!-- Specifies the default mode of this application, to be activated if no other profile (or mode) is specified --> 
    <context-param> 
     <param-name>spring.profiles.default</param-name> 
     <param-value>embedded</param-value> 
    </context-param> 

    <!-- Creates the Spring Container shared by all Servlets and Filters --> 
    <listener> 
     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
    </listener> 


     <!-- Handles requests into the application --> 
    <servlet> 
     <servlet-name>appServlet</servlet-name> 
     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
     <init-param> 
      <!-- No explicit configuration file reference here: everything is configured in the root container for simplicity --> 
      <param-name>contextConfigLocation</param-name> 
      <param-value></param-value> 
     </init-param> 
     <load-on-startup>1</load-on-startup> 
    </servlet> 

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

</web-app> 
+0

を私はこの質問をする必要があります投稿する。コントローラに@RequestParamを設定しましたか? – Fixus

+0

私は、 "グリーンハウス"の上に、アプリケーションの起動時に呼び出されるApp Controllerというクラスがあることに気付きました。 コントローラをスキャンする責任があると仮定します。 しかし、私はこのクラスを使用したとき、私のデモから呼び出されていません。 私のデモを見ることができます:http://www.zshare.net/download/994635177102c4ff/ – Echo

+0

私の主な問題は、Javaベースの設定を使ってコントローラをスキャン/設定する方法です! – Echo

答えて

1

私が直面している問題が解決されました

は、ここに私のWebConfig.javaです。 私はあなたがここにデモを見ることができる "@ComponentScan(" my.package.containing.controllers.to.scan ")"

を を経由して、コントローラをスキャンするISSEを解決してきた:私はdidn`tのhttp://refile.net/f/?o8v

関連する問題