Java Spring Boot JPA启动器的Spring Boot启动问题

Java Spring Boot JPA启动器的Spring Boot启动问题,java,spring,jpa,spring-boot,spring-data-jpa,Java,Spring,Jpa,Spring Boot,Spring Data Jpa,当我试图用springbootstarter数据jpa启动我的springboot项目时,我遇到了这个奇怪的错误。奇怪的是,我的应用程序会在我添加几个存储库和服务之前启动,但我似乎无法解释为什么spring不能初始化在添加之前工作的存储库 以下是相关错误: 11:38:42.313 INFO org.hibernate.Version.logVersion() @37 [localhost-startStop-1] - HHH000412: Hibernate Core {5.0.11.Fin

当我试图用
springbootstarter数据jpa
启动我的springboot项目时,我遇到了这个奇怪的错误。奇怪的是,我的应用程序会在我添加几个存储库和服务之前启动,但我似乎无法解释为什么spring不能初始化在添加之前工作的存储库

以下是相关错误:

11:38:42.313 INFO  org.hibernate.Version.logVersion() @37 [localhost-startStop-1] - HHH000412: Hibernate Core {5.0.11.Final}
11:38:42.316 INFO  org.hibernate.cfg.Environment.<clinit>() @213 [localhost-startStop-1] - HHH000206: hibernate.properties not found 
11:38:42.319 INFO  org.hibernate.cfg.Environment.buildBytecodeProvider() @317 [localhost-startStop-1] - HHH000021: Bytecode provider name : javassist
11:38:42.430 INFO  org.hibernate.annotations.common.Version.<clinit>() @66 [localhost-startStop-1] - HCANN000001: Hibernate Commons Annotations {5.0.1.Final}
11:38:43.165 INFO  org.hibernate.dialect.Dialect.<init>() @156 [localhost-startStop-1] - HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
11:38:43.583 ERROR org.springframework.boot.context.embedded.tomcat.TomcatStarter.onStartup() @63 [localhost-startStop-1] - Error starting Tomcat context. Exception: org.springframework.beans.factory.BeanCreationException. Message: Error creating bean with name 'emailAuthenticationFilter' defined in class path resource [gg/leet/security/WebSecurityConfig.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [gg.leet.security.EmailAuthenticationFilter]: Factory method 'emailAuthenticationFilter' threw exception; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authenticationManager' defined in class path resource [gg/leet/security/WebSecurityConfig.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.security.authentication.AuthenticationManager]: Factory method 'authenticationManager' threw exception; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'emailAuthenticationProvider': Unsatisfied dependency expressed through field 'userService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userServiceImpl' defined in file [/Users/andrew/Programs/leet-tournaments/backend/build/classes/main/gg/leet/service/UserServiceImpl.class]: Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userRepository': Cannot create inner bean '(inner bean)#76212c93' 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)#76212c93': Cannot resolve reference to bean 'entityManagerFactory' while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaAutoConfiguration.class]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: [PersistenceUnit: default] Unable to build Hibernate SessionFactory
11:38:43.617 WARN  org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext.refresh() @550 [restartedMain] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Unable to start embedded container; nested exception is org.springframework.boot.context.embedded.EmbeddedServletContainerException: Unable to start embedded Tomcat
11:38:43.631 ERROR org.springframework.boot.SpringApplication.reportFailure() @839 [restartedMain] - Application startup failed
用户服务实现:

package gg.leet.service;

import gg.leet.model.User;
import gg.leet.repository.UserRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service;

import java.util.*;

/**
 * Implementation of the UserService over the mysql repository
 */
@SuppressWarnings("unused")
@Service
public class UserServiceImpl implements UserService {
    private final UserRepository userRepository;

    @Autowired
    public UserServiceImpl(UserRepository userRepository) {
        this.userRepository = userRepository;
    }

    @Override
    public Optional<User> getByUsername(String username) {
        return this.userRepository.findOneByUsername(username);
    }

    @Override
    public Optional<User> getByEmail(String email) { return this.userRepository.findByEmail(email); }

    @Override
    public Optional<User> getById(Long id) {
        return this.userRepository.findOneById(id);
    }

    @Override
    public User save(User user) {
        return userRepository.save(user);
    }

    @Override
    public Page<User> findByContaining(String search, Pageable pageable) {
        return this.userRepository.findByUsernameOrLastNameOrFirstNameContaining(search, pageable);
    }
}
------编辑2------

------编辑3------

主要类别:

@SpringBootApplication
@EnableConfigurationProperties
@EnableAutoConfiguration
@EnableScheduling
@ComponentScan
public class LeetTournaments {
    private static final Logger LOGGER = LogManager.getLogger(LeetTournaments.class);

    public static void main(String[] args) {
        SpringApplication.run(LeetTournaments.class, args);
        // LeetTournaments.initDB();
    }

    static void initDB() {
        Webb webb = Webb.create();
        webb.get("http://127.0.0.1:8080/init").asString();
    }
}

请注意用粗体字体标记的文本:

Spring数据存储库通常从
存储库
crudepository
接口扩展。如果您使用的是自动配置,则将从包含主配置类的包(用
@EnableAutoConfiguration
@SpringBootApplication
注释的包)向下搜索存储库

-

实际上,我认为这就是问题的解决方案(用粗体字标记的文本):

默认情况下,SpringBoot将启用JPA存储库支持,并查看
@SpringBootApplication
所在的包(及其子包)如果配置的JPA存储库接口定义位于不可见的包中,则可以使用
@EnableJpaRepositories
及其类型安全
basePackageClasses=MyRepository.class
参数来指出备用包

-

<>总而言之,考虑更新<代码> LeeTraces类如下:

@EnableJpaRepositories(basePackageClasses = UserRepository.class)
public class LeetTournaments {
    ...
}

希望这有帮助。

你能发布你的数据源配置吗Spring无法启动Hibernate出于某种原因,很可能是你的Hibernate配置或Spring JPA配置有问题。我添加了数据源配置,这个配置在过去一直有效。我应该在哪里进一步配置Spring JPA?@AndrewD,你能发布
gg.leet.security.WebSecurityConfig
类的实现吗?@SergeyBrunov我添加了相关类-感谢你帮我看一下。所以经过仔细检查,我发现我的一个模型的密钥冲突,这就是我收到的错误。我一直很感激——我花了几天的时间来追踪这个。希望即使有调试标志,也能对ORM有更多的了解。@AndrewD,这是个好消息。我认为你应该把这个解决方案作为一个单独的答案分享,并把它标记为被接受的答案。
@SuppressWarnings("unused")
@Configuration
@EnableRedisHttpSession(maxInactiveIntervalInSeconds=Integer.MAX_VALUE, redisFlushMode=RedisFlushMode.IMMEDIATE)
@EnableWebSecurity
@EnableGlobalMethodSecurity(securedEnabled = true)
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
    private static final Logger LOGGER = LogManager.getLogger(WebSecurityConfig.class);

    @Value("${gg.leet.debug}")
    private boolean debug;

    /**
     * Establishes role hierarchy for user roles.
     * @return the RoleHierarchy
     */
    @Bean
    public RoleHierarchyImpl roleHierarchy() {
        RoleHierarchyImpl roleHierarchy = new RoleHierarchyImpl();
        roleHierarchy.setHierarchy(
                "ROLE_SUPER_ADMIN > ROLE_LOCATION_ADMIN " +
                        "ROLE_LOCATION_ADMIN > ROLE_REGULAR_USER ");
        return roleHierarchy;
    }

    @Bean
    public RoleHierarchyVoter roleVoter() {
        return new RoleHierarchyVoter(roleHierarchy());
    }


    @Bean
    HeaderHttpSessionStrategy sessionStrategy() {
        return new HeaderHttpSessionStrategy();
    }


    @Bean
    public AuthenticationProvider emailAuthenticationProvider() {
        return new EmailAuthenticationProvider();
    }

    @Bean
    public AuthenticationManager authenticationManager() {
        return new ProviderManager(Arrays.asList(
                emailAuthenticationProvider()
        ));
    }

    @Bean
    public AuthenticationSuccess authenticationSuccess() {
        return new AuthenticationSuccess();
    }

    @Bean
    public AuthenticationFailure authenticationFailure() {
        return new AuthenticationFailure();
    }

    @Bean
    public EmailAuthenticationFilter emailAuthenticationFilter() {
        EmailAuthenticationFilter filter = new EmailAuthenticationFilter(new AntPathRequestMatcher("/login-process", "POST"));
        applyFilterAuthRules(filter);
        return filter;
    }

    private void applyFilterAuthRules(AbstractAuthenticationProcessingFilter filter) {
        filter.setAuthenticationManager(authenticationManager());
        filter.setAuthenticationSuccessHandler(authenticationSuccess());
        filter.setAuthenticationFailureHandler(authenticationFailure());
        filter.setAllowSessionCreation(true);
    }

    @Override
    public void configure(WebSecurity web) throws Exception {
        web
                .ignoring()
                .antMatchers("/", "/**/*.css", "/**/*.js", "/index.html", "/ws/**", "/assets/**/*");
    }

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        if(debug) {
            LOGGER.warn("Allowing preflight options requests to all");
            // For the pre-flight request for options
            http
                    .authorizeRequests()
                    .antMatchers(HttpMethod.OPTIONS, "/**")
                    .permitAll();
            // Disable csrf on debug dev
            LOGGER.warn("Allowing no CSRF protection");
            http
                    .csrf()
                    .disable();
        } else {
            http
                    .csrf()
                    .csrfTokenRepository(CookieCsrfTokenRepository.withHttpOnlyFalse());
        }

        http
                .authorizeRequests()
                .antMatchers( "/**")
                .permitAll()
                .anyRequest()
                .authenticated()
                .and()
                .logout()
                .logoutUrl("/logout")
                .logoutSuccessHandler((new HttpStatusReturningLogoutSuccessHandler(HttpStatus.OK)))
                .invalidateHttpSession(true)
                .permitAll()
                .and()
                .addFilterBefore(emailAuthenticationFilter(), FilterSecurityInterceptor.class);



        http.requestCache().requestCache(new NullRequestCache());
        http.headers().cacheControl();
        http.headers().httpStrictTransportSecurity().disable();
        // .headers().contentSecurityPolicy(
        // .and().antMatcher("/bingo/card").;
    }

    @Bean
    protected BCryptPasswordEncoder passwordEncoder() {
        return new BCryptPasswordEncoder();
    }
}
buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.4.3.RELEASE'
        // classpath 'org.springframework:springloaded:1.2.6.RELEASE'
    }
}

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

repositories {
    mavenCentral()
}

idea {
    module {
        inheritOutputDirs = false
        outputDir = file("$buildDir/classes/main/")
    }
}

jar {
    baseName = 'leet-tournaments'
    version = '0.1.0'
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

configurations {
    dev
    all*.exclude module: 'spring-boot-starter-logging'
}

dependencies {

    // Spring Boot Starter Framework
    compile(
            [group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version: '1.4.3.RELEASE'],
            [group: 'org.springframework.boot', name: 'spring-boot-starter-log4j2', version: '1.2.0.RELEASE'],
            [group: 'org.springframework.boot', name: 'spring-boot-starter-security', version: '1.4.3.RELEASE'],
            [group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '1.3.2.RELEASE'],
            [group: 'org.springframework.boot', name: 'spring-boot-starter-websocket', version: '1.0.0.RELEASE'],
            [group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: '1.4.3.RELEASE'],
            [group: 'org.springframework.boot', name: 'spring-boot-devtools', version: '1.4.3.RELEASE'],
            [group: 'org.springframework.session', name: 'spring-session', version: '1.3.0.RELEASE'],
            [group: 'org.springframework', name: 'spring-messaging', version: '4.3.6.RELEASE'],
    )

    compile(
            [group: 'javax.mail', name: 'mail', version: '1.4.7'],
            [group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.8.5'],
            [group: 'mysql', name: 'mysql-connector-java', version: '5.1.35'],
            [group: 'org.projectlombok', name: 'lombok', version: '1.16.12'],
            [group: 'com.goebl', name: 'david-webb', version: '1.3.0'],
            [group: 'com.amazonaws', name: 'aws-java-sdk', version: '1.11.77'],
            [group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-hibernate5', version: '2.8.8'],
            [group: 'com.google.guava', name: 'guava', version: '22.0-rc1'],
    )

    compile(
            [group: 'io.netty',                 name: 'netty-all',              version: '4.1.7.Final'],
            [group: 'io.projectreactor',        name: 'reactor-core',           version: '2.0.7.RELEASE'],
            [group: 'io.projectreactor',        name: 'reactor-net',            version: '2.0.7.RELEASE'],
            [group: 'io.projectreactor.spring', name: 'reactor-spring-core',    version: '2.0.7.RELEASE'],
            [group: 'io.projectreactor.spring', name: 'reactor-spring-context', version: '2.0.7.RELEASE'],
    )

    // testing
    testCompile('org.springframework.boot:spring-boot-starter-test')
    testCompile('junit:junit')
}

// gradle wrapper
task wrapper(type: Wrapper) {
    gradleVersion = '3.0'
}

// run spring boot app
bootRun {
    addResources = true
    classpath = sourceSets.main.runtimeClasspath + configurations.dev
}
@SpringBootApplication
@EnableConfigurationProperties
@EnableAutoConfiguration
@EnableScheduling
@ComponentScan
public class LeetTournaments {
    private static final Logger LOGGER = LogManager.getLogger(LeetTournaments.class);

    public static void main(String[] args) {
        SpringApplication.run(LeetTournaments.class, args);
        // LeetTournaments.initDB();
    }

    static void initDB() {
        Webb webb = Webb.create();
        webb.get("http://127.0.0.1:8080/init").asString();
    }
}
@EnableJpaRepositories(basePackageClasses = UserRepository.class)
public class LeetTournaments {
    ...
}