它工作在1.4.3.RELEASE但错误在2.0.2.RELEASE

Person.java

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;

@Entity
public class Person {
@Id
@GeneratedValue
private Long personId;
private String name;
private Integer age;

public Person() {
}


public Long getPersonId() {
    return personId;
}

public void setPersonId(Long personId) {
    this.personId = personId;
}

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

public Integer getAge() {
    return age;
}

public void setAge(Integer age) {
    this.age = age;
}
}

PersonRepository.java

public interface PersonRepository extends JpaRepository<Person, Long> {


}

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 
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.intern</groupId>
<artifactId>miniproject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>miniproject</name>
<description>Demo project for Spring Boot</description>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.13.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>1.8</java.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-configuration-processor</artifactId>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-jpa</artifactId>
    </dependency>

    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
    </dependency>

    <dependency>
        <groupId>io.springfox</groupId>
        <artifactId>springfox-swagger2</artifactId>
    </dependency>
    <dependency>
        <groupId>io.springfox</groupId>
        <artifactId>springfox-swagger-ui</artifactId>
    </dependency>


</dependencies>

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

错误是

org.springframework.beans.factory.BeanCreationException:在类路径资源中定义名为'requestMappingHandlerAdapter'的bean时出错[org / springframework / boot / autoconfigure / web / servlet / WebMvcAutoConfiguration $ EnableWebMvcConfiguration.class]:通过工厂方法进行Bean实例化失败;嵌套异常是org.springframework.beans.BeanInstantiationException:无法实例化[org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter]:工厂方法'requestMappingHandlerAdapter'抛出异常;嵌套异常是org.springframework.beans.factory.BeanCreationException:在类路径资源中定义名称为'mvcConversionService'的bean时出错[org / springframework / boot / autoconfigure / web / servlet / WebMvcAutoConfiguration $ EnableWebMvcConfiguration.class]:通过工厂进行Bean实例化方法失败;嵌套异常是org.springframework.beans.BeanInstantiationException:无法实例化[org.springframework.format.support.FormattingConversionService]:工厂方法'mvcConversionService'抛出异常;嵌套异常是org.springframework.beans.factory.BeanCreationException:创建名为'personRepository'的bean时出错:合并bean定义的后处理失败;嵌套异常是java.lang.NoSuchMethodError:javax.persistence.PersistenceContext.synchronization()Ljavax / persistence / SynchronizationType;在org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:587)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.beans.factory . org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java)中的Support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1254)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] :1103)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:541)〜[spring-beans- 5.0.6.RELEASE.jar:5.0.6.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:501)~ [spring-beans-5.0.6.RELEASE.jar:5.0 .6.RELEASE]在org.springframework.beans.factory.support.AbstractBeanFac org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton中的tory.lambda $ doGetBean $ 0(AbstractBeanFactory.java:317)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE](DefaultSingletonBeanRegistry . java:228)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:315)〜[spring-beans -5.0.6.RELEASE.jar:5.0.6.RELEASE]在org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)〜[spring-beans-5.0.6.RELEASE.jar: 5.0.6.RELEASE] org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:760)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] at org . orframe.springframework.context.support.AbstractApplic上的springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:869)〜[spring-context-5.0.6.RELEASE.jar:5.0.6.RELEASE] ort.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java)中的ationContext.refresh(AbstractApplicationContext.java:550)〜[spring-context-5.0.6.RELEASE.jar:5.0.6.RELEASE] :140)〜[spring-boot-2.0.2.RELEASE.jar:2.0.2.RELEASE] org.springframework.boot.SpringApplication.refresh(SpringApplication.java:759)[spring-boot-2.0.2.RELEASE .jar:2.0.2.RELEASE]在org.springframework的org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:395)[spring-boot-2.0.2.RELEASE.jar:2.0.2.RELEASE] . boot.SpringApplication.run(SpringApplication.java:327)[spring-boot-2.0.2.RELEASE.jar:2.0.2.RELEASE]在org.springframework.boot.SpringApplication.run(SpringApplication.java:1255)[spring -boot-2.0.2.RELEASE.jar:2.0.2.RELEASE]在org.springframework.boot.SpringApplication.run(SpringApplication.java:1243)[spring-boot-2.0.2.RELEASE.jar:2.0.2 .RELEASE]在com.intern.miniproject.MiniprojectApplication.main(MiniprojectApplica) tion.java:14)[classes /:na]引起:org.springframework.beans.BeanInstantiationException:无法实例化[org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter]:工厂方法'requestMappingHandlerAdapter'抛出例外;嵌套异常是org.springframework.beans.factory.BeanCreationException:在类路径资源中定义名为'mvcConversionService'的bean时出错[org / springframework / boot / autoconfigure / web / servlet / WebMvcAutoConfiguration $ EnableWebMvcConfiguration.class]:通过工厂方法进行的Bean实例化失败;嵌套异常是org.springframework.beans.BeanInstantiationException:无法实例化[org.springframework.format.support.FormattingConversionService]:工厂方法'mvcConversionService'抛出异常;嵌套异常是org.springframework.beans.factory.BeanCreationException:创建名为'personRepository'的bean时出错:合并bean定义的后处理失败;嵌套异常是java.lang.NoSuchMethodError:javax.persistence.PersistenceContext.synchronization()Ljavax / persistence / SynchronizationType;在org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.beans.factory . support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:579)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] ... 18个常用帧省略引起:org.springframework.beans.factory . BeanCreationException:在类路径资源中定义名称为'mvcConversionService'的bean时出错[org / springframework / boot / autoconfigure / web / servlet / WebMvcAutoConfiguration $ EnableWebMvcConfiguration.class]:通过工厂方法进行Bean实例化失败;嵌套异常是org.springframework.beans.BeanInstantiationException:无法实例化[org.springframework.format.support.FormattingConversionService]:工厂方法'mvcConversionService'抛出异常;嵌套异常是org.springframework.beans.factory.BeanCreationException:创建名为'personRepository'的bean时出错:合并bean定义的后处理失败;嵌套异常是java.lang.NoSuchMethodError:javax.persistence.PersistenceContext.synchronization()Ljavax / persistence / SynchronizationType;在org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:587)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.beans.factory . org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java)中的Support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1254)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] :1103)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:541)〜[spring-beans- 5.0.6.RELEASE.jar:5.0.6.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:501)~ [spring-beans-5.0.6.RELEASE.jar:5.0 .6.RELEASE]在org.springframework.beans.factory.support.AbstractBeanFac org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton中的tory.lambda $ doGetBean $ 0(AbstractBeanFactory.java:317)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE](DefaultSingletonBeanRegistry . java:228)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:315)〜[spring-beans -5.0.6.RELEASE.jar:5.0.6.RELEASE]在org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)〜[spring-beans-5.0.6.RELEASE.jar: 5.0.6.RELEASE]在org.springframework.context.annotation.ConfigurationClassEnhancer $ BeanMethodInterceptor.resolveBeanReference(ConfigurationClassEnhancer.java:392)〜[spring-context-5.0.6.RELEASE.jar:5.0.6.RELEASE] at org . orframe.springframework.boot.autoc中的springframework.context.annotation.ConfigurationClassEnhancer $ BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:364)〜[spring-context-5.0.6.RELEASE.jar:5.0.6.RELEASE] onfigure.web.servlet.WebMvcAutoConfiguration $ EnableWebMvcConfiguration $$ EnhancerBySpringCGLIB $$ c9419d2b.mvcConversionService()〜[spring-boot-autoconfigure-2.0.2.RELEASE.jar:2.0.2.RELEASE] org.springframework.web.servlet . org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration $ enableWebMvcConfiguration中的config.annotation.WebMvcConfigurationSupport.getConfigurableWebBindingInitializer(WebMvcConfigurationSupport.java:602)~ [spring-webmvc-5.0.6.RELEASE.jar:5.0.6.RELEASE] .getConfigurableWebBindingInitializer(WebMvcAutoConfiguration.java:524)〜[spring-boot-autoconfigure-2.0.2.RELEASE.jar:2.0.2.RELEASE]在org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport.requestMappingHandlerAdapter(WebMvcConfigurationSupport . java:564)〜[spring-webmvc-5.0.6.RELEASE.jar:5.0.6.RELEASE] atorg.springframework上的org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration $ EnableWebMvcConfiguration.requestMappingHandlerAdapter(WebMvcAutoConfiguration.java:467)〜[spring-boot-autoconfigure-2.0.2.RELEASE.jar:2.0.2.RELEASE] .boot.autoconfigure.web.servlet.WebMvcAutoConfiguration $ EnableWebMvcConfiguration $$ EnhancerBySpringCGLIB $$ c9419d2b.CGLIB $ requestMappingHandlerAdapter $ 5()〜[spring-boot-autoconfigure-2.0.2.RELEASE.jar:2.0.2.RELEASE] at org . springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration $ EnableWebMvcConfiguration $$ EnhancerBySpringCGLIB $$ c9419d2b $$ FastClassBySpringCGLIB $$ 61b02d8c.invoke()〜[spring-boot-autoconfigure-2.0.2.RELEASE.jar:2.0.2.RELEASE ] org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228)〜[spring-core-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.context.annotation.ConfigurationClassEnhancer $ BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:361)〜[spring-context-5.0.6.RELEASE . jar:5.0.6.RELEASE] at org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration $ EnableWebMvcConfiguration $$ EnhancerBySpringCGLIB $$ c9419d2b.requestMappingHandlerAdapter()〜[spring-boot-autoconfigure-2.0.2.RELEASE.jar: 2.0.2.RELEASE] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)〜[na:1.8.0_172] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)〜[na:1.8.0_172] at at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)〜[na:1.8.0_172] atg的java.lang.reflect.Method.invoke(Method.java:498)〜[na:1.8.0_172] . springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] ... 19个常用帧省略引起:org . springframework.beans.BeanInstantiationException:无法实例化[org.springframework.format.support.FormattingConversionService]:工厂方法'mvcConversionService'抛出除外离子;嵌套异常是org.springframework.beans.factory.BeanCreationException:创建名为'personRepository'的bean时出错:合并bean定义的后处理失败;嵌套异常是java.lang.NoSuchMethodError:javax.persistence.PersistenceContext.synchronization()Ljavax / persistence / SynchronizationType;在org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.beans.factory . support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:579)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] ...省略了44个常见帧引起的:org.springframework.beans.factory . BeanCreationException:创建名为'personRepository'的bean时出错:合并bean定义的后处理失败;嵌套异常是java.lang.NoSuchMethodError:javax.persistence.PersistenceContext.synchronization()Ljavax / persistence / SynchronizationType;在org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:556)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.beans.factory . org.springframework.beans.factory.support.AbstractBeanFactory.lambda $ doGetBean $ 0(支持.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:501)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] orB.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton中的AbstractBeanFactory.java:317)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE]〜[spring -beans-5.0.6.RELEASE.jar:5.0.6.RELEASE]在org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:315)〜[spring-beans-5.0.6.RELEASE . jar:5.0.6.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:204)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6 .RELEASE]在org.springframework.data.repository的org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1095)〜[spring-context-5.0.6.RELEASE.jar:5.0.6.RELEASE] .support.Repositories.cacheRepositoryFactory(Repositories.java:96)〜[spring-data-commons-2.0.7.RELEASE.jar:2.0.7.RELEASE] org.springframework.data.repository.support.Repositories.populateRepositoryFactoryInformation(在org.springframework.data.repository.support.Repositories上的Repositories.java:89)~ [spring-data-commons-2.0.7.RELEASE.jar:2.0.7.RELEASE] . (Repositories.java:82)〜[在org.springframework.data.repository.support.DomainClassConverter.setApplicationContext(DomainClassConverter.java:109)〜[spring-data-commons-2.0]中的spring-data-commons-2.0.7.RELEASE.jar:2.0.7.RELEASE] .7.RELEASE.jar:2.0.7.RELEASE] at org.springframework.data.web.config.SpringDataWebConfiguration.addFormatters(SpringDataWebConfiguration.java:131)〜[spring-data-commons-2.0.7.RELEASE.jar:2.0.7.RELEASE] org.springframework.web.servlet.config.annotation.WebMvcConfigurerComposite.addFormatters(WebMvcConfigurerComposite.java:81)〜[spring-webmvc -5.0.6.RELEASE.jar:5.0.6.RELEASE]在org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration.addFormatters(DelegatingWebMvcConfiguration.java:78)〜[spring-webmvc-5.0.6.RELEASE . jar:5.0.6.RELEASE] at org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration $ EnableWebMvcConfiguration.mvcConversionService(WebMvcAutoConfiguration.java:495)〜[spring-boot-autoconfigure-2.0.2.RELEASE.jar:2.0 .2.RELEASE] at org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration $ EnableWebMvcConfiguration $$ EnhancerBySpringCGLIB $$ c9419d2b.CGLIB $ mvcConversionService $ 0()〜[spring-boot-autoconfigure-2.0.2.RELEASE.jar: 2.0.2.RELEASE] at org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration $ EnableWebMvcConfiguration $$ EnhancerBySpringCGLIB $$ c9419d 2b $$ FastClassBySpringCGLIB $$ 61b02d8c.invoke()〜[spring-boot-autoconfigure-2.0.2.RELEASE.jar:2.0.2.RELEASE]在org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java: 228)〜[spring-core-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.context.annotation.ConfigurationClassEnhancer $ BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:361)~ [spring-context-5.0 .6.RELEASE.jar:5.0.6.RELEASE] at org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration $ EnableWebMvcConfiguration $$ EnhancerBySpringCGLIB $$ c9419d2b.mvcConversionService()〜[spring-boot-autoconfigure-2.0.2 .RELEASE.jar:2.0.2.RELEASE] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)〜[na:1.8.0_172] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)〜[na: 1.8.0_172] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)〜[na:1.8.0_172] at java.lang.reflect.Method.invoke(Method.java:498)〜[na:1.8 . 0_172]在组织 . springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154)〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE] ... 45个常用帧省略引起:java . lang.NoSuchMethodError:javax.persistence.PersistenceContext.synchronization()Ljavax / persistence / SynchronizationType; org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor $ PersistenceElement . (PersistenceAnnotationBeanPostProcessor.java:653)〜[spring-orm-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.orm.jpa orsu.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java)中的.support.PersistenceAnnotationBeanPostProcessor.lambda $ buildPersistenceMetadata $ 1(PersistenceAnnotationBeanPostProcessor.java:435)〜[spring-orm-5.0.6.RELEASE.jar:5.0.6.RELEASE] :522)〜[spring-core-5.0.6.RELEASE.jar:5.0.6.RELEASE] org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.buildPersistenceMetadata(PersistenceAnnotationBeanPostProcessor.java:420)〜[spring-orm- 5.0.6.RELEASE.jar:5.0.6.RELEASE]在org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.findPersistenceMetadata(PersistenceAnnotationBeanPostProcessor.java:394)〜[spring-orm-5.0.6.RELEASE.jar:5.0 .6.RELEASE]在org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostP org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyMergedBeanDefinitionPostProcessors(AbstractAutowireCapableBeanFactory.java:1020)中的rocessor.postProcessMergedBeanDefinition(PersistenceAnnotationBeanPostProcessor.java:332)〜[spring-orm-5.0.6.RELEASE.jar:5.0.6.RELEASE] )〜[spring-beans-5.0.6.RELEASE.jar:5.0.6.RELEASE]在org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:553)〜[spring-beans-5.0 . 6.RELEASE.jar:5.0.6.RELEASE] ...省略了69个常用帧