我正在尝试在关系表 Stock Category 中插入一行。
我正在关注这个例子:http ://www.mkyong.com/hibernate/hibernate-many-to-many-example-join-table-extra-column-annotation/
现在我已经有了表 stock 和 category 的数据。
稍后我想将股票和类别相互关联。
在不编写自定义 sql 查询的情况下如何做到这一点?
如果我可以像这样添加 StockCategory 是否有可能?
Stock stock = new Stock();
stock.setStockId(1);
Category category = new Category();
category.setCategoryId(1);
StockCategory stockCategory = new StockCategory();
stockCategory.setStock(stock); //here you need to get the stock object by id
stockCategory.setCategory(category1); //here you need to get the category1 object by id
stockCategory.setCreatedDate(new Date()); //extra column
stockCategory.setCreatedBy("system"); //extra column
session.save(stockCategory );
提前致谢。