0

以下のような springapp-dao.xml が 1 つあります。

<?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:jee="http://www.springframework.org/schema/jee"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/jee 
http://www.springframework.org/schema/jee/spring-jee-3.1.xsd">

    <jee:jndi-lookup id="masterDS" jndi-name="java:jboss/datasources/MySqlDS" />
    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
        <property name="dataSource" ref="masterDS" />
        <property name="hibernateProperties">
        <props>
        <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
        <prop key="hibernate.show_sql">true</prop>
        </props>
</property>
    </bean>
</beans>

次に、次のような springapp-service.xml が 1 つあります。

<?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:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/tx 
http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
http://www.springframework.org/schema/aop 
http://www.springframework.org/schema/aop/spring-aop-3.1.xsd ">
    <bean id="txManager"
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="masterDS" />
    </bean>
    <tx:advice id="txAdvice" transaction-manager="txManager">
    <tx:attributes>
        <tx:method name="get*" read-only="true" propagation="REQUIRED"/>
        <tx:method name="*" propagation="REQUIRED"/>
    </tx:attributes>
</tx:advice>
    <aop:config>
        <aop:pointcut expression="execution(* service.*.*(..))"
            id="service" />
        <aop:advisor advice-ref="txAdvice" pointcut-ref="service" />
    </aop:config>
    <bean id="contactDAO" class="dao.ContactDAOImpl">
    <property name="sessionFactory" ref="sessionFactory"/>
    </bean>
    <bean id="contactService" class="service.ContactServiceImpl">
    <property name="contactDAO" ref="contactDAO"/>
    </bean>
</beans>

それから私は1つのDAOImplを持っています

@Repository("ContactDAO")
@Transactional(readOnly = false)
public class ContactDAOImpl  implements ContactDAO {
private SessionFactory sessionFactory;

    public SessionFactory getSessionFactory() {
        return sessionFactory;
    }

    public void setSessionFactory(SessionFactory sessionFactory) {
        this.sessionFactory = sessionFactory;
    }



public List<Contacts> listContact() {

            return sessionFactory.openSession().createQuery("from Contacts")
                    .list();
        }

}

次に、連絡先テーブルに正しくマップされるPOJOが1つあります

@Entity
@Table(name = "CONTACTS")
public class Contacts {

    @Id
    @Column(name = "ID")
    @GeneratedValue
    // The @GeneratedValue annotation says that this value will be determined by
    // the datasource, not by the code.
    private Integer id;

    @Column(name = "FIRSTNAME")
    private String firstname;

    @Column(name = "LASTNAME")
    private String lastname;

    @Column(name = "EMAIL")
    private String email;

    @Column(name = "TELEPHONE")
    private String telephone;
    @Column(name = "CREATED")
    private String created;

.........

それから私は1つのサービスクラスを持っています

@Service
public class ContactServiceImpl implements ContactService {


    private ContactDAO contactDAO;

    public ContactDAO getContactDAO() {
        return contactDAO;
    }

    public void setContactDAO(ContactDAO contactDAO) {
        this.contactDAO = contactDAO;
    }

...................................

今、私は 2 つの質問があります。まず、 ContactsDAOImpl のセッション ファクトリと ContactServiceImpl の ContactDAO を自動配線しようとしたときに、まったく配線されませんでした。次に、上記のようにセッターとゲッターを使用しました。次に、必要な依存関係の注入を開始しました。今私の問題は、私が ContactDAOImpl の listContact() メソッドである場合です (最初に getConnection の代わりにファクトリでオープン接続を呼び出す必要がありましたが、それは機能しません)、次の例外がスローされます

org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.hibernate.hql.internal.ast.QuerySyntaxException: Contacts is not mapped [from Contacts]

hbm ファイルを作成する必要がありますか

4

1 に答える 1

2

LocalSessionFactoryBean にクラスを配置する場所を伝える必要があるため、 Contacts クラスが含まれるパッケージは次のとおりです。

<property name="packagesToScan" value="your.orm.package"/>
于 2012-11-27T23:28:40.613 に答える