これはException
私のコードで得られるものです:
org.hibernate.hql.internal.ast.QuerySyntaxException: product is not mapped [from Product]
この部分が問題のコードです。
@SuppressWarnings("unchecked")
public List<Product> getProducts() {
Session session = sessionFactory.getCurrentSession();
Query query = session.createQuery("from product");
List<Product> productList = query.list();
}
私が試したことは次のとおりです。
1)
Query query = session.createQuery("from product");
変更=>「製品から」しかし、それは何も変更しません
2) 変更
List<Product> result = (List<User>) session.createQuery("from Product").list();
session.getTransaction().commit();
return result;
でも何も変わらない!!
これは完全なコードです
package kr.ac.hansung.cse.dao;
import java.util.List;
import org.hibernate.query.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;
import kr.ac.hansung.cse.model.Product;
@Repository
@Transactional
public class ProductDao {
@Autowired
private SessionFactory sessionFactory;
@SuppressWarnings("unchecked")
public List<Product> getProducts() {
Session session = sessionFactory.getCurrentSession();
Query query = session.createQuery("from product");
List<Product> productList = query.list();
return productList;
}
public Product getProductById(int id) {
Session session = sessionFactory.getCurrentSession();
Product product = (Product) session.get(Product.class, id);
return product;
}
public void addProduct(Product product) {
Session session = sessionFactory.getCurrentSession();
session.saveOrUpdate(product);
session.flush();
}
public void deleteProduct(Product product) {
Session session = sessionFactory.getCurrentSession();
session.delete(product);
session.flush();
}
public void updateProduct(Product product) {
Session session = sessionFactory.getCurrentSession();
session.saveOrUpdate(product);
session.flush();
}
}
HTTP ステータス 500 – 内部サーバー エラー java.lang.IllegalArgumentException: org.hibernate.hql.internal.ast.QuerySyntaxException: 製品がマップされていません [製品から]