0

私はこのクラスを持っています:

public class DatabaseHelper {
    @Autowired
    static UtilService utilService;

    public static void fillEmptyTables(){
        if(!isSkillsInDatabase()){
            utilService.addGeneratedSkill();
        }
        if(!isEventTypesInDatabase()){
            utilService.addGeneratedEventType();
        }
        if(!isEventStatusesInDatabase()){
            utilService.addGeneratedEventStatus();
        }

    }
    public static boolean isSkillsInDatabase(){
        return utilService.getAllSkills().size() != 0; 
    }
    public static boolean isEventStatusesInDatabase(){
        return utilService.getAllEventStatuses().size() != 0; 
    }
    public static boolean isEventTypesInDatabase(){
        return utilService.getAllEventTypes().size() != 0; 
    }
}

そしてこのリスナー:

@WebListener
public class ApplicationWebListener implements ServletContextListener {
    @Override
    public void contextDestroyed(ServletContextEvent arg0) {
        System.out.println("ServletContextListener destroyed");
    }

    @Override
    public void contextInitialized(ServletContextEvent arg0) {
        System.out.println("ServletContextListener started");
        DatabaseHelper.fillEmptyTables();
    }
}

アプリケーションを実行すると、次のように表示されます。

INFO : org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 10029 ms
ServletContextListener started
22.10.2013 13:21:16 org.apache.catalina.core.StandardContext listenerStart
SEVERE: Exception sending context initialized event to listener instance of class com.epam.hhsystem.web.controllers.ApplicationWebListener
java.lang.NullPointerException
    at com.epam.hhsystem.util.DatabaseHelper.isSkillsInDatabase(DatabaseHelper.java:25)
    at com.epam.hhsystem.util.DatabaseHelper.fillEmptyTables(DatabaseHelper.java:13)
    at com.epam.hhsystem.web.controllers.ApplicationWebListener.contextInitialized(ApplicationWebListener.java:19)
    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4887)
    at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5381)
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1559)
    at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1549)
    at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
    at java.util.concurrent.FutureTask.run(FutureTask.java:138)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at java.lang.Thread.run(Thread.java:662)
22.10.2013 13:21:16 org.apache.catalina.core.StandardContext startInternal
SEVERE: Error listenerStart

この問題の原因は何ですか?

修正方法は?

アップデート

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

    <!-- Enables the Spring MVC @Controller programming model -->
    <annotation-driven />

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
    <resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
    <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/views/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>

    <context:component-scan base-package="com.epam.hhsystem.web.controllers"/>


</beans:beans>

この:

<import resource="classpath:spring/BeanConfig.xml" />
    <!-- Файл с настройками Security -->
    <import resource="security_config.xml" />

この:

<context:annotation-config />

    <!--ищем тут разные аннотации (например @service)  -->
    <context:component-scan base-package="com.epam.hhsystem.jpa" />
    <context:component-scan base-package="com.epam.hhsystem.util" />
    <context:component-scan base-package="com.epam.hhsystem.services" />

    <context:component-scan base-package="com.epam.hhsystem.web.controllers" />



    <!-- Файл с настройками ресурсов для работы с данными (Data Access Resources) -->
    <import resource="data.xml" />

そうです。

アップデート

@WebListener
public class ApplicationWebListener implements ServletContextListener {
    @Override
    public void contextDestroyed(ServletContextEvent arg0) {
        System.out.println("ServletContextListener destroyed");
    }

    @Override
    public void contextInitialized(ServletContextEvent arg0) {
        System.out.println("ServletContextListener started");
    }
}

このコードはうまくいきます。アプリケーションを実行すると、

servletContextListener が開始されました

メッセージ

UtilService の場所: ここに画像の説明を入力

構成からの文字列:

<context:component-scan base-package="com.epam.hhsystem.services" />

このコードを @Configuration クラスに追加した後

    @Bean
    ApplicationWebListener getApplicationWebListener(){
        return new ApplicationWebListener();
    }

古いエラーが表示されます。

更新 2

あなたのアドバイスのためにコードをリファクタリングします。私は混乱しています:

バリアント 1:

   public class MyApplicationListener  implements ApplicationListener<ContextRefreshedEvent> {
            @Autowired
            UtilService utilService;

            public  void fillEmptyTables(){
                if(!isSkillsInDatabase()){
                    utilService.addGeneratedSkill();
                }
                if(!isEventTypesInDatabase()){
                    utilService.addGeneratedEventType();
                }
                if(!isEventStatusesInDatabase()){
                    utilService.addGeneratedEventStatus();
                }

            }
            public  boolean isSkillsInDatabase(){
                return utilService.getAllSkills().size() != 0; 
            }
            public  boolean isEventStatusesInDatabase(){
                return utilService.getAllEventStatuses().size() != 0; 
            }
            public  boolean isEventTypesInDatabase(){
                return utilService.getAllEventTypes().size() != 0; 
            }    

            @Override
            public void onApplicationEvent(ContextRefreshedEvent event) {
                fillEmptyTables();
        }


    }

このバリアントはうまく機能しますが、アーキテクチャの恐怖です

バリアント 2:

public class MyApplicationListener  implements ApplicationListener<ContextRefreshedEvent> {
                @Override
                public void onApplicationEvent(ContextRefreshedEvent event) {
                           DatabaseHelper.fillEmptyTables();

            }
}

古いスタックトレースが表示されます。

なぜ?

4

1 に答える 1

0

Spring 構成ファイルでコンポーネントのスキャンが有効になっていることを確認してください。Compenent スキャン タグは、UtilService. 現在、Spring Bean として初期化されていUtilServiceないため、自動配線の候補ではありません。

<context:component-scan base-package="package.containing.UtilService" />

Spring 構成で を Bean として登録してみてくださいApplicationWebListener。これが機能するかどうかはわかりませんが、クラスのフィールドを自動配線するには、そのクラスが Bean である必要があります。Spring は、IOC コンテナーの一部としてインスタンス化されていないクラスに Bean をオートワイヤーできません。

別のアプローチがあります。Spring は、ApplicationListenerクラスによって実装され、Bean として登録できるインターフェースを提供します。はApplicationListener、起動、再起動、シャットダウンなど、アプリケーションのライフサイクル中のさまざまな時点で呼び出されます。

の例を次に示しApplicationListenerます。

リスナーの例

そして、ディスパッチャーの構成ファイルである必要がある構成ファイルにそのリスナーを登録する例:

構成

そしてドキュメンテーション

于 2013-10-22T09:33:21.363 に答える