Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/spring/12.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 错误-NoSuchBeanDefinitionException:没有名为';实体管理工厂&x27;可获得的_Java_Spring_Spring Data Jpa_Spring Batch - Fatal编程技术网

Java 错误-NoSuchBeanDefinitionException:没有名为';实体管理工厂&x27;可获得的

Java 错误-NoSuchBeanDefinitionException:没有名为';实体管理工厂&x27;可获得的,java,spring,spring-data-jpa,spring-batch,Java,Spring,Spring Data Jpa,Spring Batch,我正在尝试用SpringBatch和jpa开发一个新批次。当我尝试启动它时,我收到错误“嵌套异常为org.springframework.beans.factory.NoSuchBeanDefinitionException:没有名为“entityManagerFactory”的bean可用” 这里是我的pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="

我正在尝试用SpringBatch和jpa开发一个新批次。当我尝试启动它时,我收到错误“嵌套异常为org.springframework.beans.factory.NoSuchBeanDefinitionException:没有名为“entityManagerFactory”的bean可用”

这里是我的pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.1.RELEASE</version>
        <relativePath/>
    </parent>
    <groupId>com.test.batch</groupId>
    <artifactId>test-be-batch</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>test-be-batch</name>
    <description>Modulo applicativo batch per reportistica</description>

    <properties>
        <java.version>1.8</java.version>
        <spring-boot-admin.version>2.2.3</spring-boot-admin.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-batch</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.hibernate</groupId>
                    <artifactId>hibernate-entitymanager</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.hibernate</groupId>
                    <artifactId>hibernate-core</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>de.codecentric</groupId>
            <artifactId>spring-boot-admin-starter-server</artifactId>
        </dependency>
        <dependency>
            <groupId>org.eclipse.persistence</groupId>
            <artifactId>org.eclipse.persistence.jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <scope>runtime</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.springframework.batch</groupId>
            <artifactId>spring-batch-test</artifactId>
            <scope>test</scope>
        </dependency>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>de.codecentric</groupId>
                <artifactId>spring-boot-admin-dependencies</artifactId>
                <version>${spring-boot-admin.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>
我的存储库类:

package com.test.testid.batch.testidbebatch.dao.eid.repository;

import java.util.Date;
import java.util.List;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Repository;

import com.test.testid.batch.testidbebatch.dao.eid.entity.UserReportsLog;

@Repository
public interface UserReportsLogRepository extends JpaRepository<UserReportsLog, Integer> {

    @Query("SELECT usl.legalEntity, usl.serviceProvider, usl.eventType, count(1) as number "
            + "FROM UserReportsLogs usl where usl.createdOn = :extractionDate")
    public List<Object[]> getReports(@Param("extractionDate") Date extractionDate);

}
Application.properties:

persistence.datasource.xid.type=com.zaxxer.hikari.HikariDataSource
persistence.datasource.xid.url=${jdbc:postgresql://xxxx:1234/xxx?currentSchema=xid}
persistence.datasource.xid.driverClassName=org.postgresql.Driver
persistence.datasource.xid.username=${DB_USERNAME:xxx}
persistence.datasource.xid.password=${DB_PASSWORD:xxx}
persistence.datasource.xid.platform=postgresql
persistence.datasource.xid.hikari.minimumIdle=${DB_testID_DS_MIN_IDLE:2}
persistence.datasource.xid.hikari.maximumPoolSize=${DB_testID_DS_MAX_POOL_SIZE:10}
persistence.datasource.xid.hikari.idleTimeout=${DB_testID_DS_IDLE_TIMEOUT:30000}
persistence.datasource.xid.hikari.poolName=${DB_testID_DS_POOL_NAME:MBEHikariCP}
persistence.datasource.xid.hikari.maxLifetime=${DB_testID_DS_MAX_LIFETIME:2000000}
persistence.datasource.xid.hikari.connectionTimeout=${DB_testID_DS_CONNECTION_TIMEOUT:30000}
如果我尝试启动应用程序,我将获得以下错误:

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.2.4.RELEASE)

2020-07-02 16:30:46.750  INFO 5168 --- [           main] c.e.e.b.e.testidBeBatchApplication       : Starting testidBeBatchApplication on vt-name with PID 5168 (C:\dev\testid-batch\target\classes started by name in C:\dev\testid-batch)
2020-07-02 16:30:46.754 DEBUG 5168 --- [           main] c.e.e.b.e.testidBeBatchApplication       : Running with Spring Boot v2.2.4.RELEASE, Spring v5.2.3.RELEASE
2020-07-02 16:30:46.754  INFO 5168 --- [           main] c.e.e.b.e.testidBeBatchApplication       : No active profile set, falling back to default profiles: default
2020-07-02 16:30:47.534  INFO 5168 --- [           main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2020-07-02 16:30:47.768  INFO 5168 --- [           main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 224ms. Found 1 JPA repository interfaces.
2020-07-02 16:30:49.094  INFO 5168 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2020-07-02 16:30:49.118  INFO 5168 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.test.testid.connector.data.configuration.SpringDataConfigurationDefault' of type [com.test.testid.connector.data.configuration.SpringDataConfigurationDefault] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2020-07-02 16:30:49.123  INFO 5168 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'performanceMonitorAdvisor' of type [org.springframework.aop.support.DefaultPointcutAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2020-07-02 16:30:49.551  INFO 5168 --- [           main] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2020-07-02 16:30:49.552  INFO 5168 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2751 ms
2020-07-02 16:30:49.958  WARN 5168 --- [           main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userReportsLogRepository': Cannot create inner bean '(inner bean)#51d719bc' of type [org.springframework.orm.jpa.SharedEntityManagerCreator] while setting bean property 'entityManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name '(inner bean)#51d719bc': Cannot resolve reference to bean 'entityManagerFactory' while setting constructor argument; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'entityManagerFactory' available
2020-07-02 16:30:49.977  INFO 5168 --- [           main] ConditionEvaluationReportLoggingListener : 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2020-07-02 16:30:50.106 ERROR 5168 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

A component required a bean named 'entityManagerFactory' that could not be found.


Action:

Consider defining a bean named 'entityManagerFactory' in your configuration.

有人可以帮我吗?

您正在调用的是方法
TestIDataSourceProperties
,而不是bean

试试这个:

@Bean
@Primary
@ConfigurationProperties("persistence.datasource.xid.hikari")
public DataSource testIdDataSource(@Autowired DataSourceProperties dataSourceProperties) {
    return dataSourceProperties.initializeDataSourceBuilder().build();
}

您正在调用方法testIDataSourceProperties,而不是bean

试试这个:

@Bean
@Primary
@ConfigurationProperties("persistence.datasource.xid.hikari")
public DataSource testIdDataSource(@Autowired DataSourceProperties dataSourceProperties) {
    return dataSourceProperties.initializeDataSourceBuilder().build();
}

您使用的是哪个Hibernate ORM版本?这可能与Spring Boot版本不匹配。好的一点是,我更改了pom,删除了Spring Boot starter数据jpa中的排除项,并删除了依赖项org.eclipse.persistence org.eclipse.persistence.jpa。现在与数据源的连接起作用了……我有一个java.lang.IllegalArgumentException:方法public abstract java.util.List com.test.testid.batch.testidbebatch.dao.xid.repository.UserReportsLogpository.getReports(java.util.Date)的验证失败!但我认为这是另一个问题,请编辑您的问题以使其他人更易于阅读,尤其是样板实体方法。为什么要将hibernate从starter依赖项中排除?您使用的是哪个hibernate ORM版本?这可能与Spring Boot版本不匹配。好的一点是,我更改了pom,删除了Spring Boot starter数据jpa中的排除项,并删除了依赖项org.eclipse.persistence org.eclipse.persistence.jpa。现在与数据源的连接起作用了……我有一个java.lang.IllegalArgumentException:方法public abstract java.util.List com.test.testid.batch.testidbebatch.dao.xid.repository.UserReportsLogpository.getReports(java.util.Date)的验证失败!但我认为这是另一个问题,请编辑您的问题以使其他人更易于阅读,尤其是样板实体方法。为什么要将hibernate从starter依赖项中排除?嗨,我已经按照你说的做了尝试。我收到同样的错误嗨,我已经按你说的做了。我收到了同样的错误
@Bean
@Primary
@ConfigurationProperties("persistence.datasource.xid.hikari")
public DataSource testIdDataSource(@Autowired DataSourceProperties dataSourceProperties) {
    return dataSourceProperties.initializeDataSourceBuilder().build();
}