복붙노트

[SPRING] Spring @Scheduled 작업이 두 번 실행됩니다.

SPRING

Spring @Scheduled 작업이 두 번 실행됩니다.

5 초마다 실행되도록 @Scheduled 작업을 생성 중입니다. 다른 질문에서 문제가되었던 것처럼 내 작업이 두 번 실행됩니다!

나는 다른 질문을 보았고 여기서 적절한 문서를 읽었지만 그 문제를 파악할 수 없었다.

내 Tomcat 서버를 시작할 때 내 @Scheduled 클래스의 두 개의 별도 인스턴스가 인스턴스화되는 것을 알고 있습니다. 또한 로그 파일을 참조 할 때 인스턴스화되는시기를 알아 냈습니다.

이 로그 라인과 연관된 하나 :

이 로그 라인과 함께 또 다른 :

다음은 스프링 설정 파일입니다.

<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" xmlns:mvc="http://www.springframework.org/schema/mvc"
   xmlns:security="http://www.springframework.org/schema/security"
   xmlns:task="http://www.springframework.org/schema/task"
   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.2.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd">

<context:component-scan base-package="web.controllers"/>
<context:component-scan base-package="services"/>
<context:component-scan base-package="dao"/>
<context:component-scan base-package="scheduled"/>
<context:property-placeholder location="/WEB-INF/application.properties"/>

<mvc:annotation-driven/>
<mvc:default-servlet-handler/>

<task:annotation-driven />

그리고 내 간단한 자바 클래스 :

package scheduled;

import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;

@Service
public class Notifier {

@Scheduled(fixedDelay = 5000)
public void notifyUsersOfBidItems() {
    try {
        System.out.println(this);

    } catch (Exception e) {
        e.printStackTrace();
    }

}
}

또한 스프링 4를 사용하고 있습니다.

편집 : web.xml 추가

<web-app 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_3_0.xsd"
     version="3.0">
<display-name>Archetype Created Web Application</display-name>

<servlet>
    <servlet-name>servlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring_config.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

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

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

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring_config.xml</param-value>
</context-param>

<error-page>
    <error-code>404</error-code>
    <location>/error/notFound</location>
</error-page>

<error-page>
    <error-code>403</error-code>
    <location>/error/notFound</location>
</error-page>


<error-page>
    <location>/error/internal</location>
</error-page>

<!-- Spring Security -->
<filter>
    <filter-name>springSecurityFilterChain</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>

<filter-mapping>
    <filter-name>springSecurityFilterChain</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>

해결법

  1. ==============================

    1.나는 이것이 web.xml에 두 번로드되는 동일한 구성 파일에 의해 발생한다고 생각합니다.

    나는 이것이 web.xml에 두 번로드되는 동일한 구성 파일에 의해 발생한다고 생각합니다.

    <servlet>
        <servlet-name>servlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring_config.xml</param-value> <!-- FIRST -->
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring_config.xml</param-value> <!-- SECOND -->
    </context-param>
    

    편집하다 그것을 해결하기 위해:

    다른 파일 servlet-servlet.xml을 만듭니다 (ServletDispatcher 구성은이 파일을 서블릿 이름으로 파일과 비교하므로 기본적으로 선택됩니다) 파일에는 다음 내용이 포함됩니다.

    <beans>
        <context:component-scan base-package="web.controllers"/>
        <mvc:annotation-driven/>
        <mvc:default-servlet-handler/>
    </beans>
    

    원본 파일 수정 (spring-config.xml) :

    <beans>
        <task:annotation-driven />
        <context:component-scan base-package="services"/>
        <context:component-scan base-package="dao"/>
        <context:component-scan base-package="scheduled"/>
        <context:property-placeholder location="/WEB-INF/application.properties"/>
    </beans>
    

    웹 xml 서블릿 구성을 다음과 같이 수정하십시오.

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

    2.나는 또한이 문제가 있었다. 나는 봄 4를 사용하고있다. xml 설정이 없다. 모든 것은 어노테이션과 자바 설정으로 구성됩니다.

    나는 또한이 문제가 있었다. 나는 봄 4를 사용하고있다. xml 설정이 없다. 모든 것은 어노테이션과 자바 설정으로 구성됩니다.

    기본 구성과 WebConfiguration이 있습니다. 두 구성에서 @ComponentScan을 사용하면 오류가 발생했습니다. 기본 구성에서 구성 요소 검사를 제거했습니다.

    @EnableWebMvc
    @ComponentScan(basePackages = { "com.myservice" })
    @Configuration
    public class WebConfiguration extends WebMvcConfigurerAdapter {
      @Bean
      public UrlBasedViewResolver setupViewResolver() {
        UrlBasedViewResolver resolver = new UrlBasedViewResolver();
        resolver.setPrefix("/WEB-INF/jsp/");
        resolver.setSuffix(".jsp");
        resolver.setViewClass(JstlView.class);
        return resolver;
      }
    
      @Override
      public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
        configurer.enable();
      }
    }
    
    @Configuration
    @EnableScheduling
    //@ComponentScan(basePackages = { "com.myservice" })  
    @PropertySource("${myservice.properties.location:classpath:myservice.properties}")
    public class BaseConfiguration  {
    
    
      @Autowired
      Environment environment;
    
      @Bean
      public static PropertySourcesPlaceholderConfigurer properties() {
        return new PropertySourcesPlaceholderConfigurer();
      }
    
  3. ==============================

    3.솔루션 : Quartz + Spring 이중 실행 java config

    솔루션 : Quartz + Spring 이중 실행 java config

    getServletConfigClasses () -> null를 돌려줍니다.

        public static class MvcWebApplicationInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
    
    
        @Override
        protected Class<?>[] getRootConfigClasses() {
            return new Class[]{WebConfig.class};
        }
    
        @Override
        protected Class<?>[] getServletConfigClasses() {
            return null;
        }
    
        @Override
        protected String[] getServletMappings() {
            return new String[]{"/"};
    
        }
    }
    

    예제 코드 솔루션

  4. from https://stackoverflow.com/questions/28652416/spring-scheduled-task-runs-twice by cc-by-sa and MIT license