1

struts2 と spring をベースに Web アプリケーションを作りたいです。まず、@Autowired が struts2 で機能するかどうかをテストしました。しかし、そうではありません。dataSource は null です。どうすれば修正できるかわかりません。その情報を教えてください。

HelloWorld.java

package example;
import java.sql.Connection;
import org.apache.commons.dbcp.BasicDataSource;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.opensymphony.xwork2.ActionSupport;
@Component
public class HelloWorld extends ActionSupport {
    @Autowired
    private BasicDataSource dataSource;
    public String execute() throws Exception {
        Connection con = dataSource.getConnection();
        con.close();
        return SUCCESS;
    }
}

applicationContext.xml

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
    <property name="driverClassName" value="org.h2.Driver"/>
    <property name="url" value="jdbc:h2:mem" />
    <property name="maxActive" value="10" />
    <property name="username" value="sa" />
    <property name="password" value="" />
</bean>

<context:annotation-config />
<context:component-scan base-package="example" />

web.xml

<filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>

<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

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

struts.xml

<constant name="struts.enable.DynamicMethodInvocation" value="false" />
<constant name="struts.devMode" value="true" />

<package name="example" namespace="/example" extends="struts-default">
    <action name="HelloWorld" class="example.test.HelloWorld">
        <result>/example/HelloWorld.jsp</result>
    </action>
</package>
4

1 に答える 1

2

Struts アプリケーションで作業する@Autowiredには、次のものが必要です。

クラスパスに struts2 と spring プラグインがあることを確認してください。

次の行を入れますstrtus.xml

<struts>
  <constant name="struts.objectFactory" value="org.apache.struts2.spring.StrutsSpringObjectFactory" />
  ... 
</struts>

Action classesspring の xml ファイルを構成する

<bean id="editAction" class="org.apache.struts.edit.action.EditAction" >

    <property name="editService" ref="editService" />

</bean>

struts.xmlそして、アクション クラスを指定する代わりに、ファイルにBean ID を指定します。

<action name="edit" class="editAction" method="input">
    <result name="input">/edit.jsp</result>
</action>  

詳細については、http://struts.apache.org/release/2.2.x/docs/spring-and-struts-2.htmlおよびhttp://struts.apache.org/release/2.2.x/docs/を参照してください。 spring-plugin.html

于 2014-01-06T04:42:41.383 に答える