0

これについて非常に多くの質問があり、多くの異なるソリューションの多数の順列を試しましたが、どれもうまくいきませんでした.

トランザクションを実行するために休止状態のセッション ファクトリを必要とする dao があります。SpringMVC コンテキストでは動作しているのを見てきましたが、Java クラスに含まれる dao は null です。catalina.out にエラーはありません:

私の完全なapplicationContext.xml(問題はどこかにあると本当に思っているからです):

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

   xsi:schemaLocation=
   "http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/tx 
    http://www.springframework.org/schema/tx/spring-tx.xsd
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context.xsd">

<!-- Scan classpath for annotations (eg: @Service, @Repository etc)-->

<context:annotation-config/>

<context:component-scan base-package="com.shazam.di.*" />

<!-- JNDI Data Source. this works I can get to it independent of spring-->
<bean id="myDataSource" class="org.springframework.jndi.JndiObjectFactoryBean"
scope="singleton">
    <property name="jndiName" value="jdbc/dostudentdb"/>
    <property name="resourceRef" value="true"/>
</bean>

<tx:annotation-driven/>

<!-- Hibernate Session Factory -->
<bean id="mySessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
    <property name="dataSource" ref="myDataSource"/>
    <property name="packagesToScan">
    <array>
        <value>com.shazam.di.spring.coursemgmt.dao</value>
    </array>
    </property>
    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.show_sql">false</prop>
            <!--<prop key="hibernate.hbm2ddl.auto">update</prop>-->
            <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
        </props>        
    </property>
</bean>

<!-- Hibernate Transaction Manager -->
<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
    <property name="sessionFactory" ref="mySessionFactory"/>
</bean>

<!--I've alternated between contructor, properties for getters & setters --> 
<!--here, and nothing (just letting it get autowired into the private-->
<!--SessionFactory instance, no effing cigar!!-->
<bean id="studentDAO" class="org.shazam.di.spring.coursemgmt.dao.StudentDAO">
    <!--<constructor-arg type="SessionFactory" value="mySessionFactory"/>-->
    <property name="insertUserProfile" ref="insertUserProfile"/>
</bean>
</beans>

sessionFactory ではなく DAO が見つかるクラス:

@Component
public class CheckClassAccess
{
    @Autowired 
    private static StudentDAO studentDAO;...

DAOの始まり(ゲッターとセッターとコンストラクターのみを配線してみました):

@Repository
@SuppressWarnings({"unchecked", "rawtypes"})
public class StudentDAO {

    @Autowired 
    private SessionFactory sessionFactory;
etc...

WEB XML Spring の行:

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath*:WEB-INF/applicationContext.xml</param-value>
</context-param>    
and then a little later...
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener> 

これに対する他の唯一の注意点は、Opencms と呼ばれるオープンソースの Java cms 内でこれを機能させようとしていることです。しかし、私が配線しているファイルは、コントローラーなどではなく、バニラJavaサポートクラスであるため、それが関連しているかどうかはわかりません(まだSpring-MVCを実際に実行するつもりはありません)。

実際、これはすべて、別の小さなアプリケーションのSpring MVCサーブレットコンテキストで機能しますが、これらの同じオブジェクト/アノテーションをapplicationContextに登録できないようです。

4

2 に答える 2

0

何が起こっているのか理解できませんでしたが、Spring の実装を引き出して Hibernate を直接操作することで問題を解決しました。

Hibernate のみを使用するための再作業は簡単でした。

  • hibernate.cfg.xml に追加し、
  • dao のメソッドでいくつかの Spring 管理のトランザクション アノテーションを削除し、そのトランザクション管理を手動で追加しました
  • https://stackoverflow.com/a/15702946/1411545のような静的な最終 SessionFactory シングルトンを追加しました
  • Spring ライブラリと不要な Spring アノテーションを削除しました。

移行全体にかかった時間はおそらく 1 時間で、うまく機能しており、このプロジェクトに必要なすべての作業を行うことができます。何が機能したか機能しなかったかに関係なく、ここで Spring を使用するという最初の選択は間違っていたと思います。

皆様、多くの有益なコメントと回答をありがとうございました。

于 2013-09-29T14:33:35.150 に答える
0

注釈の命名を使用している場合は重要です。したがってStudentDAO、次のように変更します。

@Autowired
@Qualifier("mySessionFactory")
private SessionFactory sessionFactory;

詳細については、これを参照してください。

別の方法として、Spring は@Resourceアノテーションを推奨しています。

@Resource("mySessionFactory")
private SessionFactory sessionFactory;
于 2013-09-28T12:03:58.680 に答える