0

質問を参照してください -ハイバネート セッション ファクトリを直接インスタンス化できますが、春には実行できません

その質問では、私は春をまったく始めることができませんでした。ApplicationContext を使用して春を開始する必要があると誰かが提案した後、解決されました。しかし、このアプローチでは、インスタンスを取得する必要があるたびに、ApplicationContext を使用してから Bean を使用する必要があります。私が望むのは、春がすべての豆をその場所に注入し、好きな場所でそれらを使用できるようにすることです. だから私はこれを私のweb.xmlに入れました

<listener> <!-- For struts2-spring to work -->
    <listener-class>
        org.springframework.web.context.ContextLoaderListener
    </listener-class>
</listener>  

しかし、これは私にとってはまったくうまくいきません。Bean が注入されたオブジェクトが呼び出された場所で、null ポインター例外が発生します。

4

1 に答える 1

0

標準の 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">

<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring/root-context.xml</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>

<!-- Processes application requests -->
<servlet>
    <servlet-name>appServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</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>

Web xml のバージョンをこれと比較し、これらの Bean を含む xml ファイルが適切に初期化されているかどうかを確認してください。アプリケーション起動時に出力されるスタックトレースを解析できます。

于 2013-03-06T06:16:53.950 に答える