2016-12-31 3 views
1

잘 작동하는 데 사용되는이 응용 프로그램이 있습니다.Spring REST 응용 프로그램 구성 및 시작

나는 오랜 시간이 지나면 실행하려고하는데 예상대로 작동하지 않습니다.

죄송합니다. 정확한 오류는 아닙니다.

컨트롤러를 노출하는 스프링 REST 애플리케이션이며 스프링 MVC 애플리케이션이 아닙니다.

나 디버거에서 시작하는가 WebConfiguration 클래스의 메서드에 배치 된 모든 중단 점에서 중지하지 것입니다 퍼즐 우선 :

package com.nsn.nitro.project.rest.config; 

@Configuration 
@EnableWebMvc 
@EnableSpringDataWebSupport 
@ComponentScan(nameGenerator = PackageBeanNameGenerator.class, basePackages = { "com.nsn.nitro.project.rest" }) 
public class WebConfiguration extends WebMvcConfigurerAdapter { 

    private static final int PAGE_DEFAULT_SIZE = 20; 

    @Override 
    public void addArgumentResolvers(
      List<HandlerMethodArgumentResolver> argumentResolvers) { 
     PageableHandlerMethodArgumentResolver resolver = new PageableHandlerMethodArgumentResolver(); 
     resolver.setFallbackPageable(new PageRequest(0, PAGE_DEFAULT_SIZE)); 
     resolver.setMaxPageSize(50); 
     resolver.setOneIndexedParameters(true); 
     resolver.setPageParameterName("page"); 
     resolver.setSizeParameterName("size"); 
     argumentResolvers.add(resolver); 
     super.addArgumentResolvers(argumentResolvers); 
    } 

    @Bean 
    public MessageSource messageSource() { 
     ReloadableResourceBundleMessageSource messageSource = new ReloadableResourceBundleMessageSource(); 
     messageSource.setBasenames("classpath:messages/messages", 
       "classpath:messages/validation"); 
     // If true, the key of the message will be displayed if the key is not 
     // found, instead of throwing an exception 
     messageSource.setUseCodeAsDefaultMessage(true); 
     messageSource.setDefaultEncoding("UTF-8"); 
     // The value 0 means always reload the messages to be developer friendly 
     messageSource.setCacheSeconds(0); 
     return messageSource; 
    } 

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

    @Override 
    public void configureDefaultServletHandling(
      DefaultServletHandlerConfigurer configurer) { 
     configurer.enable(); 
    } 

    @Bean 
    public LocaleResolver localeResolver() { 
     return new SmartLocaleResolver(); 
    } 

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

    // The locale interceptor provides a way to switch the language in any page 
    // just by passing the lang=’en’, lang=’fr’, and so on to the url 
    @Bean 
    public LocaleChangeInterceptor localeChangeInterceptor() { 
     LocaleChangeInterceptor localeChangeInterceptor = new LocaleChangeInterceptor(); 
     localeChangeInterceptor.setParamName("lang"); 
     return localeChangeInterceptor; 
    } 

    // Avoid caching issue with AngularJS on IE 
    @Bean 
    public WebContentInterceptor webContentInterceptor() { 
     WebContentInterceptor interceptor = new WebContentInterceptor(); 
     interceptor.setCacheSeconds(0); 
     interceptor.setUseExpiresHeader(true); 
     interceptor.setUseCacheControlHeader(true); 
     interceptor.setUseCacheControlNoStore(true); 
     return interceptor; 
    } 

    @Override 
    public void addInterceptors(InterceptorRegistry registry) { 
     registry.addInterceptor(localeChangeInterceptor()); 
     registry.addInterceptor(webContentInterceptor()); 
    } 

그리고 응용 프로그램 구성 :

package com.nsn.nitro.project.rest.config;  

@Configuration 
@ComponentScan(nameGenerator = PackageBeanNameGenerator.class, basePackages = { 
     "com.nsn.nitro.project.data.config", 
     "com.nsn.nitro.project.rest.config", 
     "com.nsn.nitro.project.rest.service" }) 
public class ApplicationConfiguration { 

    private static Logger logger = LoggerFactory.getLogger(ApplicationConfiguration.class); 

    public ApplicationConfiguration() { 
     logger.debug("===========>> Loading the NITRO application configuration"); 
    } 

} 

디버거는 ApplicationConfiguration() 생성자에있는 중단 점에서도 중지되지 않습니다. 그리고 콘솔 로그에서 로거 출력을 볼 수 없습니다. curl -H "Accept:application/json" --user [email protected]:******* http://localhost:8080/nitro-project-rest/greeting?message=Steph처럼 항상 나에게 다음과 같은 오류를 제공

mvn clean install tomcat7:run 

그러나 어떤 요청을 전송 :

INFO] <<< tomcat7-maven-plugin:2.2:run (default-cli) < process-classes @ nitro-project-rest <<< 
[INFO] 
[INFO] --- tomcat7-maven-plugin:2.2:run (default-cli) @ nitro-project-rest --- 
[INFO] Running war on http://localhost:8080/nitro-project-rest 
[INFO] Creating Tomcat server configuration at /home/stephane/dev/java/projects/nitro-project-rest/target/tomcat 
[INFO] create webapp with contextPath: /nitro-project-rest 
Dec 31, 2016 9:41:14 AM org.apache.coyote.AbstractProtocol init 
INFO: Initializing ProtocolHandler ["http-bio-8080"] 
Dec 31, 2016 9:41:14 AM org.apache.coyote.AbstractProtocol init 
INFO: Initializing ProtocolHandler ["http-bio-8443"] 
Dec 31, 2016 9:41:16 AM org.apache.catalina.core.StandardService startInternal 
INFO: Starting service Tomcat 
Dec 31, 2016 9:41:16 AM org.apache.catalina.core.StandardEngine startInternal 
INFO: Starting Servlet Engine: Apache Tomcat/7.0.47 
Dec 31, 2016 9:41:25 AM org.apache.catalina.core.ApplicationContext log 
INFO: 1 Spring WebApplicationInitializers detected on classpath 
SLF4J: Class path contains multiple SLF4J bindings. 
SLF4J: Found binding in [jar:file:/home/stephane/.m2/repository/org/slf4j/slf4j-log4j12/1.6.4/slf4j-log4j12-1.6.4.jar!/org/slf4j/impl/StaticLoggerBinder.class] 
SLF4J: Found binding in [jar:file:/home/stephane/.m2/repository/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.jar!/org/slf4j/impl/StaticLoggerBinder.class] 
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation. 
SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder] 
Dec 31, 2016 9:41:26 AM org.apache.coyote.AbstractProtocol start 
INFO: Starting ProtocolHandler ["http-bio-8080"] 
Dec 31, 2016 9:41:26 AM org.apache.coyote.AbstractProtocol start 
INFO: Starting ProtocolHandler ["http-bio-8443"] 

내가 메이븐 명령을 사용하여 응용 프로그램을 시작

응용 프로그램은하지만 잘 시작하는 것 같습니다 :

SEVERE: Servlet.service() for servlet [default] in context with path [/nitro-project-rest] threw exception 
java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener or DispatcherServlet registered? 

내 인사 컨트롤러는 다음과 같습니다.

@Controller 
@RequestMapping(RESTConstants.SLASH + RESTConstants.GREETING + RESTConstants.SLASH) 
public class GreetingController { 

    private static final String TEMPLATE = "Hello, %s!"; 

    @RequestMapping(value = RESTConstants.SLASH + RESTConstants.HELLO, method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) 
    @ResponseBody 
    public HttpEntity<Greeting> hello(@RequestParam(value = "message", required = false, defaultValue = "World") String message, UriComponentsBuilder builder) { 
     Greeting greeting = new Greeting(String.format(TEMPLATE, message)); 
     greeting.add(linkTo(methodOn(GreetingController.class).hello(message, builder)).withSelfRel()); 
     HttpHeaders responseHeaders = new HttpHeaders(); 
     responseHeaders.setLocation(builder.path(RESTConstants.SLASH + RESTConstants.GREETING + RESTConstants.SLASH + "hello").buildAndExpand().toUri()); 
     responseHeaders.add("Content-Type", "application/json; charset=utf-8"); 
     ResponseEntity<Greeting> responseEntity = new ResponseEntity<Greeting>(greeting, responseHeaders, HttpStatus.OK);   
     return responseEntity; 
    } 

} 
+0

이 프로그램이 @Configuration으로 주석 당신의 WebConfiguration.java을 찾기 위해 경로를 검색합니까? –

+0

응용 프로그램 구성 bean도 추가했습니다. 그러나 실제로 일어나는 스캐닝에 대해 궁금합니다. 중단 점이나 로거 출력이 표시되지 않습니다 .... – Stephane

+0

구성 콩이 런타임시 존재하지 않는 것처럼 보입니다. 이렇게하면 프로그램에서 경로를 검색하여 "루트 구성 파일"을 찾습니다 (내 질문을 변경해야합니다. 그것은 ApplicationConfiguration입니다.) –

답변

0

디스패처 서블릿이 누락되었습니다! 이 파일을 지금

이 훨씬 더 잘 작동 :

public class WebInit extends AbstractAnnotationConfigDispatcherServletInitializer { 

    private static Logger logger = LoggerFactory.getLogger(WebInit.class); 

    @Override 
    protected void customizeRegistration(ServletRegistration.Dynamic registration) { 
     registration.setInitParameter("dispatchOptionsRequest", "true"); 
     registration.setAsyncSupported(true); 
     registration.setLoadOnStartup(1); 
    } 

    @Override 
    protected Class<?>[] getRootConfigClasses() { 
     return new Class<?>[] { ApplicationConfiguration.class }; 
    } 

    @Override 
    protected Class<?>[] getServletConfigClasses() { 
     return new Class<?>[] { WebConfiguration.class }; 
    } 

    @Override 
    protected String[] getServletMappings() { 
     // The '/api/*' prefix is to allow a match of an .../api/... request to a controller mapping 
     // The '/' is to allow a match of a root request to a static resource 
     return new String[] { "/api/*", "/" }; 
    } 

    @Override 
    protected String getServletName() { 
     return CommonConstants.SERVLET_NAME; 
    } 

}