第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

IllegalArgumentException: 未知實(shí)體: java.lang.Integer]

IllegalArgumentException: 未知實(shí)體: java.lang.Integer]

呼如林 2023-08-04 16:40:00
我在學(xué)習(xí) spring 時(shí)做了這個(gè)例子,一切正常,現(xiàn)在我正在編寫自己的項(xiàng)目,我不明白為什么當(dāng)我嘗試從EntityManager 類從 MySQL 數(shù)據(jù)庫(kù)中刪除對(duì)象產(chǎn)品類(我不會(huì)在此處粘貼所有方法,例如 getter 和 setter 等)import javax.persistence.*;@Entitypublic class Product {    @Id    @GeneratedValue(strategy = GenerationType.AUTO)    private Integer id;    private String name;    @OneToOne    private ProductType type;    private float price;    private String description;    //more code...}ProductRepository(我只顯示刪除方法)import javax.persistence.EntityManager;import javax.persistence.PersistenceContext;import javax.transaction.Transactional;public class DBProductRepository implements ProductRepository{    @PersistenceContext    private EntityManager entityManager;    @Override    @Transactional    public void deleteProduct(Integer id) {        entityManager.remove(id);    }    //more code...}ProductService(我只顯示刪除方法)@Servicepublic class ProductService {    public void deleteProduct(Integer id) {        productRepository.deleteProduct(id);    }    //more code...}產(chǎn)品控制器@Controllerpublic class ProductController {    @RequestMapping("/products")    public String getProducts(Model model){        List<Product> products = productService.getAllProducts();        model.addAttribute("products",products);        return "products";    }    @RequestMapping(value="/product/delete/{id}")    public String deleteProduct(@PathVariable("id") Integer id){        productService.deleteProduct(id);        return "redirect:/products";    }    //more code...}
查看完整描述

1 回答

?
富國(guó)滬深

TA貢獻(xiàn)1790條經(jīng)驗(yàn) 獲得超9個(gè)贊

EntityManager#remove將實(shí)體實(shí)例作為參數(shù)。你正在路過Integer。

改成:

@Override

@Transactional

public void deleteProduct(Product product) {

? ? entityManager.remove(product);

}


查看完整回答
反對(duì) 回復(fù) 2023-08-04
  • 1 回答
  • 0 關(guān)注
  • 134 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)