Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/spring/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 春季少年警讯;“类不是实体”;_Java_Spring_Jpa_Intellij Idea - Fatal编程技术网

Java 春季少年警讯;“类不是实体”;

Java 春季少年警讯;“类不是实体”;,java,spring,jpa,intellij-idea,Java,Spring,Jpa,Intellij Idea,我对使用Spring(4.2.4版)和JPA(2.1版)的项目有问题 简而言之,问题在文件“Book.java”的代码部分: 特别是在 query=“从com.jpaProSpring.Book b中选择b”) 我的IntelliJ突出显示了这本书,并说类不是实体。我也不知道,为什么会有这么多人给我举一个书中的例子 链接到我的项目 我的spring-config.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="h

我对使用Spring(4.2.4版)和JPA(2.1版)的项目有问题

简而言之,问题在文件“Book.java”的代码部分:

特别是在

query=“从com.jpaProSpring.Book b中选择b”)

我的IntelliJ突出显示了这本书,并说类不是实体。我也不知道,为什么会有这么多人给我举一个书中的例子

链接到我的项目

我的spring-config.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:jdbc="http://www.springframework.org/schema/jdbc"
       xmlns:jpa="http://www.springframework.org/schema/data/jpa"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
              http://www.springframework.org/schema/beans/spring-beans.xsd
              http://www.springframework.org/schema/context
              http://www.springframework.org/schema/context/spring-context.xsd
              http://www.springframework.org/schema/jdbc
              http://www.springframework.org/schema/jdbc/spring-jdbc.xsd
              http://www.springframework.org/schema/data/jpa
              http://www.springframework.org/schema/data/jpa/spring-jpa.xsd
              http://www.springframework.org/schema/tx
              http://www.springframework.org/schema/tx/spring-tx.xsd
       ">


        <tx:annotation-driven transaction-manager="transactionManager" />

       <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
              <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
              <property name="url" value="jdbc:mysql://localhost:3310/testdb"/>
              <property name="username" value="root"/>
              <property name="password" value="1234"/>
              <property name="initialSize" value="5"/>
              <property name="maxActive" value="10"/>
       </bean>

       <bean id="transactionManager"
             class="org.springframework.orm.jpa.JpaTransactionManager">
              <property name="entityManagerFactory" ref="emf" />
       </bean>

       <bean id="emf"
             class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
              <property name="dataSource" ref="dataSource" />
              <property name="jpaVendorAdapter">
                  <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"/>
              </property>
              <property name="packagesToScan" value="com.jpaProSpring" />
              <property name="jpaProperties">
                  <props>
                      <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                      <prop key="hibernate.max_fetch_depth">3</prop>
                      <prop key="hibernate.jdbc.fetch_size">50</prop>
                      <prop key="hibernate.jdbc.batch_size">10</prop>
                      <prop key="hibernate.show_sql">true</prop>
                  </props>
              </property>
       </bean>

         <bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
         <context:annotation-config />
         <context:component-scan base-package="com.jpaProSpring" />
</beans>

org.hibernate.dialogue.mysqldialogue
3.
50
10
真的

注:我知道实体必须在META-INF/源文件中的persistence.xml中声明。但如果我理解正确,Spring4可以在不使用persistence.xml的情况下配置项目。所以,我不使用它。

如果您使用InelyJ Idea,可能您没有在项目中添加JPA方面。尝试打开菜单“文件”->“项目结构”,然后在项目设置列表中选择名为“Facets”的部分。检查您是否在facet列表中配置了JPA facet。如果您没有看到JPA方面,只需添加它(通过按“+”按钮)。或者,您可以指定persistence.xml(如果有)和默认JPA提供程序。希望这会有所帮助。

为该类发布整个文件。它在测试中运行良好吗?因为IDE试图提供帮助,但有时它们不正确,或者它们的配置不正确,无法提供正确的消息。我想这可能会有帮助,@chrylis我已经完成了)@JBNizet事实是我没有为此项目使用测试:)是的,它可以工作!非常感谢大家!当一切正常时,这是一种不可思议的感觉:)是的,那么在Eclipse和Spring Boot中我们应该做什么呢?
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:jdbc="http://www.springframework.org/schema/jdbc"
       xmlns:jpa="http://www.springframework.org/schema/data/jpa"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
              http://www.springframework.org/schema/beans/spring-beans.xsd
              http://www.springframework.org/schema/context
              http://www.springframework.org/schema/context/spring-context.xsd
              http://www.springframework.org/schema/jdbc
              http://www.springframework.org/schema/jdbc/spring-jdbc.xsd
              http://www.springframework.org/schema/data/jpa
              http://www.springframework.org/schema/data/jpa/spring-jpa.xsd
              http://www.springframework.org/schema/tx
              http://www.springframework.org/schema/tx/spring-tx.xsd
       ">


        <tx:annotation-driven transaction-manager="transactionManager" />

       <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
              <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
              <property name="url" value="jdbc:mysql://localhost:3310/testdb"/>
              <property name="username" value="root"/>
              <property name="password" value="1234"/>
              <property name="initialSize" value="5"/>
              <property name="maxActive" value="10"/>
       </bean>

       <bean id="transactionManager"
             class="org.springframework.orm.jpa.JpaTransactionManager">
              <property name="entityManagerFactory" ref="emf" />
       </bean>

       <bean id="emf"
             class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
              <property name="dataSource" ref="dataSource" />
              <property name="jpaVendorAdapter">
                  <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"/>
              </property>
              <property name="packagesToScan" value="com.jpaProSpring" />
              <property name="jpaProperties">
                  <props>
                      <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                      <prop key="hibernate.max_fetch_depth">3</prop>
                      <prop key="hibernate.jdbc.fetch_size">50</prop>
                      <prop key="hibernate.jdbc.batch_size">10</prop>
                      <prop key="hibernate.show_sql">true</prop>
                  </props>
              </property>
       </bean>

         <bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
         <context:annotation-config />
         <context:component-scan base-package="com.jpaProSpring" />
</beans>