2016-08-14 7 views
0

저는 JPA에서 초보자입니다. 엔터티의 모든 인스턴스를 반환하려는 경우 method getAll. 그러나 WAR에서 프로젝트를 수집 할 때이 오류가 발생합니다. error. 나는 프로 블렘이 무엇인지 모른다. 내 실체 또는 맥락에서 문제 일 수 있습니다. 일반 기업 :조건 쿼리를 실행하기 위해 TypedQuery 인스턴스를 만들 수 없습니다.

@Entity 
public class Currency { 
@Id 
@GeneratedValue(strategy = GenerationType.IDENTITY) 
private long id; 
private String name; 



public Currency() { 

} 

public long getId() { 
    return id; 
} 

public void setId(long id) { 
    this.id = id; 
} 

public String getName() { 
    return name; 
} 

public void setName(String name) { 
    this.name = name; 
} 

} 

상황 :

<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:tx="http://www.springframework.org/schema/tx" 
    xsi:schemaLocation="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 
    http://www.springframework.org/schema/tx 
    http://www.springframework.org/schema/tx/spring-tx.xsd"> 

<context:annotation-config/> 
<tx:annotation-driven/> 

<context:component-scan base-package="ru.stasdev"/> 

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
    <property name="prefix" value="/WEB-INF/pages/"/> 
    <property name="suffix" value=".jsp"/> 
</bean> 

<bean id="dataSource" 
     class="org.apache.commons.dbcp.BasicDataSource"> 
    <property name="driverClassName" value="com.mysql.jdbc.Driver"/> 
    <property name="url" value="jdbc:mysql://localhost:3306/mydbtest"/> 
    <property name="username" value="root"/> 
    <property name="password" value="root"/> 
    <property name="initialSize" value="3" /> 
    <property name="maxActive" value="10" /> 
</bean> 

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> 
    <property name="dataSource" ref="dataSource"/> 
    <property name="packagesToScan" value="ru.stasdev.domain"/> 
    <property name="hibernateProperties"> 
     <props> 
      <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop> 
      <prop key="hibernate.show_sql">true</prop> 
      <prop key="hibernate.format_sql">true</prop> 
     </props> 
    </property> 

</bean> 

<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> 
    <property name="dataSource" ref="dataSource"/> 
    <property name="packagesToScan" value="ru.stasdev"/> 
    <property name="jpaVendorAdapter"> 
     <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"> 
      <property name="showSql" value="true"/> 
      <property name="database" value="MYSQL"/> 
      <property name="databasePlatform" value="org.hibernate.dialect.MySQL5Dialect"/> 
     </bean> 
    </property> 
</bean> 

<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> 
    <property name="basename" value="validation"/> 
</bean> 

<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> 
    <property name="entityManagerFactory" ref="entityManagerFactory"/> 
</bean> 

답변

-1

당신은 겉으로 JPA 1.0에 대해 컴파일하고 및 호출 방법은 JPA 2.0 이상 (즉이 EntityManager.createQuery(CriteriaQuery))입니다. 따라서 컴파일 할 JPA API jar를 v2.0 또는 v2.1로 정정해야합니다.

PS1. 왜 당신은 게시물에 컴파일러 오류 및 오류 자체로 코드를 게시하지 않는지 알 수 없습니다 (게시자가 게시 한 코드 대신 컴파일러 오류와는 아무런 관련이 없음).

PS2. 왜 당신은 당신의 설정에서 Hibernate 특정 항목을 가지고 있는지, 나는 잘 모른다. EMF를 생성하기 때문에 Hibernate SessionFactory가 아닌 그것을 사용하십시오 ...