Intellij Idea createQuery时“from unexpected”

ttygqcqt  于 2023-08-03  发布在  其他
关注(0)|答案(3)|浏览(118)

我在创建查询时得到一个错误:
'from'意外


的数据
我的代码如下:

@Override
    public Admin findByAdmin(Admin admin) {

        return (Admin) sessionFactory.getCurrentSession().
                createQuery("from Admin where admin_name=? and pwd=?").
                setParameter(0, admin.getAdminName()).
                setParameter(1, admin.getAdminPwd()).
                uniqueResult();

    }

字符串

yfwxisqw

yfwxisqw1#

在intelliJ idea中修复此错误

Your Project (Right-Click) ---> Framework support: * 勾选**“Hibernate”**
按【确定】。

lfapxunr

lfapxunr2#

我是新手,但也犯了同样的错误。解决的方法是在项目结构- Facets下添加Hibernate facet。

wsewodh2

wsewodh23#

如果您在项目结构设置(File --> Project Structure... --> Facets)中找不到Hibernate,请进入File --> Settings --> Plugins,在搜索栏中输入Hibernate,并验证Intellij是否添加了插件。之后,您将在项目设置中的Facets下找到它并添加支持。
在我的情况下,这是什么帮助了我。

相关问题