Spring hibernateTemplate Postgres i проблеми з мапінгом
Добрий день,
Маю проблему з маппінгом jpa викидаэться помилка з величезним дескрипшином:
org.hibernate.hql.ast.QuerySyntaxException: excludedwords is not mapped [from excludedwords]
Новий bean зберыгаэться, а витягнути неможу :(
Може хтось мав щось схоже.
Тут Spring i Java beans:
List find = hibernateTemplate.find("from excludedwords");
<bean id="mySessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="myDataSource" />
<property name="annotatedClasses">
<list>
<value>com.my5.db.beans.ExcludedWord</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">create</prop>
</props>
</property>
</bean>
@Entity
@Table(name="excludedwords", schema="public")
public class ExcludedWord {
public ExcludedWord(){}
private Long id;
private String word;
@SequenceGenerator(name="ew_id_Gen", sequenceName="excludedwordsseq")
@GeneratedValue(strategy=GenerationType.SEQUENCE,generator="ew_id_Gen")
@Id
@Column(name="ew_id")
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
@Column(name="word", length=255)
public String getWord() {
....
CREATE TABLE excludedwords
(
ew_id bigint NOT NULL,
word character(255),
CONSTRAINT excludedwords_pkey PRIMARY KEY (ew_id)
)
Буду вдячний за будь-яку допомогу!
4 коментарі
Додати коментар Підписатись на коментаріВідписатись від коментарів