使用注释一对多不添加列(休眠)
Posted
技术标签:
【中文标题】使用注释一对多不添加列(休眠)【英文标题】:Using annotation one-to-many not add column(hibernate) 【发布时间】:2015-06-02 12:45:21 【问题描述】:对不起我的英语。我有 2 个表 - 帖子(id、namePost、Text、idCat)和类别(id、nameCat)。我使用hibernate
和模式DAO
。我在表 Category 列 CategoryId
-> 到 Posts idCat
中创建一对多。链接王的工作,输出信息不错。但是当我在表 Posts 中添加信息时,idCat 列不添加,它在数据库中没有任何内容。我无法在表 Posts 中添加此列(idCat)。我尝试了很多次,但没有成功(
类别
@Entity
@Table(name="CATEGORY")
public class Category
@Id @GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name = "ID", insertable=false, nullable=false)
private int id;
@Column(name="NAMECAT")
private String nameCat;
@Column(name="INDEX")
private boolean index;
@OneToMany(cascade = CascadeType.ALL, mappedBy = "category")
private Set<Posts> post;
//then get and set
帖子
@Id @GeneratedValue
@Column(name = "ID", unique = true, nullable = false)
private int id;
@Column(name="NAMEPOST", nullable = false)
private String namePost;
@Column(name="TEXT", nullable = false)
private String text;
@ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(name = "IDCAT", insertable=false, updatable=false)
private Category category;
//code
界面 PostDao
public interface PostDao
public void addPost(Posts post);
这是servlet
String[] catarrayid = request.getParameterValues("eachcat");//get cat what user use
String textpost = request.getParameter("textpost"); //text post
String namepost = request.getParameter("namepost"); //name post
if(!textpost.isEmpty() && !namepost.isEmpty() && catarrayid!=null)
//open session
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction();
Posts post = new Posts();
//this value take id category
int id = 0;
for(String s : catarrayid)
//get id
id = Integer.parseInt(s);
//create post object
post.setnamePost(namepost);
post.setText(textpost);
//this i add in table post value idCat
//how add in object post category id?
//post.add(???);
try
//and i add, bellow add method
Factory.getInstance().getPostDAO().addPost(post);
response.sendRedirect("indexadmin");
catch(Exception e)
System.out.println(e);
finally
if(session!=null && session.isOpen())
session.close();
像这样我添加方法
public void addPost(Posts post)
Session session = null;
try
session = HibernateUtil.getSessionFactory().openSession();
session.beginTransaction();
session.save(post);
session.getTransaction().commit();
catch(Exception e) outputError("addPost", e);
finally closeSession(session);
【问题讨论】:
【参考方案1】: @ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(name = "IDCAT", insertable=false, updatable=false)
private Category category;
为什么你有 insertable=false
?这基本上表示 Post 实体不负责 Category 实体上的插入操作。尝试删除insertable=false
或将其更改为insertable=true
(我认为这是默认设置)。
【讨论】:
以上是关于使用注释一对多不添加列(休眠)的主要内容,如果未能解决你的问题,请参考以下文章