私はSpring + Hibernateのエクササイズをやっています。プロジェクトの一例として、私はブログを選択しました。私は2つのモデルを持っています。ブログオブジェクトとタグオブジェクト。彼らはonetomany関係を持っています。私が公開し、サーバー上で実行すると、データベース上のブログアイテムを見ることができますが、タグアイテムを挿入しないで休止状態になります。ブログモデルでSpring Hibernate onetomanyの関係
タグ:タグ:モデルの
@OneToMany(targetEntity=Tags.class, mappedBy="blog", fetch=FetchType.EAGER)
@Column(name="blog_tags")
public List<Tags> getBlogTags() {
return blogTags;
}
public void setBlogTags(List<Tags> blogTags) {
this.blogTags = blogTags;
}
ブログ:
@ManyToOne(targetEntity=Blog.class,fetch=FetchType.EAGER)
@JoinColumn(name="blog_id")
public Blog getBlog() {
return blog;
}
public void setBlog(Blog blog) {
this.blog = blog;
}
休止私は私がここで行方不明ですかを把握couldntの。 hbm.xml:
<!-- Hibernate session factory -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource"/>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
<property name="annotatedClasses">
<list>
<value>com.udb.blog.model.Blog</value>
<value>com.udb.blog.model.Tags</value>
</list>
</property>
</bean>
</beans>
blogBo(blogDaoと同じ実装を使用して):
public interface BlogBo {
void save(Blog blog);
void update(Blog blog);
void delete(Blog blog);
Blog getByTitle(String str);
}
テストサーブレット:
ApplicationContext appContext = new ClassPathXmlApplicationContext("spring/config/BeanLocations.xml");
BlogBo blogBo = (BlogBo) appContext.getBean("blogBo");
Blog blog = new Blog();
blog.setBlogTitle("My Second blog");
blog.setBlogDescription("testing onetomany relationship");
blog.setBlogBody("testing done!");
blog.setBlogDate(new Date(0));
Tags tag = new Tags();
tag.setTagName("first blog");
Tags tag2 = new Tags();
tag2.setTagName("Spring");
tag.setBlog(blog);
tag2.setBlog(blog);
blogBo.save(blog);
Blog blog2 = blogBo.getByTitle("My Second blog");
response.getWriter().write(blog2.toString());
出力を休止:
Hibernate: insert into burak1_udb.blog (blog_body, blog_date, blog_desc, blog_title) values (?, ?, ?, ?)
Hibernate: select blog0_.blog_id as blog1_0_, blog0_.blog_body as blog2_0_, blog0_.blog_date as blog3_0_, blog0_.blog_desc as blog4_0_, blog0_.blog_title as blog5_0_ from burak1_udb.blog blog0_ where blog_title=?
Hibernate: select blogtags0_.blog_id as blog3_1_, blogtags0_.tag_id as tag1_1_, blogtags0_.tag_id as tag1_1_0_, blogtags0_.blog_id as blog3_1_0_, blogtags0_.tag_name as tag2_1_0_ from burak1_udb.tags blogtags0_ where blogtags0_.blog_id=?
Hibernate: select blogtags0_.blog_id as blog3_1_, blogtags0_.tag_id as tag1_1_, blogtags0_.tag_id as tag1_1_0_, blogtags0_.blog_id as blog3_1_0_, blogtags0_.tag_name as tag2_1_0_ from burak1_udb.tags blogtags0_ where blogtags0_.blog_id=?
私はblogBoロジックを変更する必要があると思うが、コンストラクタはタグのリストを持つことができるが、私はonetomanyアノテーションを必要としないだろうし、このアノテーションを使いたい場合には何が欠けているのか理解したい。
編集: 私の一時的な解決策は私がmanytomanyに変更したことです。私は3番目の表を作成した後、blogtags:
**@Entity
@Table(name="blog_tags")
public class BlogTags implements Serializable{
/**
*
*/
public BlogTags(Blog blog, Tags tag){
this.blogId = blog.getBlogId();
this.tagId = tag.getTagId();
}**
その後、私は以下のようにblogDaoが変更されました:
public void save(Blog blog, List<Tags> tags) {
getHibernateTemplate().save(blog);
for(Tags tag:tags){
getHibernateTemplate().saveOrUpdate(tag);
BlogTags blogtags = new BlogTags(blog, tag);
getHibernateTemplate().saveOrUpdate(blogtags);
}
と最終サーブレット:
Tags tag = new Tags();
tag.setTagName("myTag");
Tags tag2 = new Tags();
tag2.setTagName("Spring");
Tags tag3 = new Tags();
tag3.setTagName("Hibernate");
Tags tag4 = new Tags();
tag4.setTagName("ManytoMany");
List<Tags> tags = new ArrayList<Tags>();
tags.add(tag);
tags.add(tag2);
tags.add(tag3);
tags.add(tag4);
Blog blog = new Blog();
blog.setBlogTitle("myTest");
blog.setBlogDescription("testDesc");
blog.setBlogBody("body");
blog.setBlogDate(new Date(0));
blogBo.save(blog, tags);
あなたのソリューションの作品ありがとう! – HRgiger