Created
April 11, 2014 08:16
-
-
Save ewolff/10449313 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[wolff@ultralight:~/Documents/workspaces/spring-boot/spring-boot-demos/spring-boot-spring-data-jpa]java -noverify -javaagent:/Users/wolff/.m2/repository/org/springframework/springloaded/1.1.5.RELEASE/springloaded-1.1.5.RELEASE.jar -jar target/spring-boot-spring-data-jpa-0.0.1-SNAPSHOT.jar | |
objc[50600]: Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home/bin/java and /Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home/jre/lib/libinstrument.dylib. One of the two will be used. Which one is undefined. | |
. ____ _ __ _ _ | |
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ | |
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ | |
\\/ ___)| |_)| | | | | || (_| | ) ) ) ) | |
' |____| .__|_| |_|_| |_\__, | / / / / | |
=========|_|==============|___/=/_/_/_/ | |
:: Spring Boot :: (v1.0.1.RELEASE) | |
2014-04-11 10:15:27.748 INFO 50600 --- [ main] c.e.springbootdatajpa.ControllerAndMain : Starting ControllerAndMain on ultralight.localdomain with PID 50600 (/Users/wolff/Documents/workspaces/spring-boot/spring-boot-demos/spring-boot-spring-data-jpa/target/spring-boot-spring-data-jpa-0.0.1-SNAPSHOT.jar started by wolff) | |
2014-04-11 10:15:27.862 INFO 50600 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5acc4ef7: startup date [Fri Apr 11 10:15:27 CEST 2014]; root of context hierarchy | |
2014-04-11 10:15:30.746 INFO 50600 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$7b02a6d4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | |
2014-04-11 10:15:30.879 INFO 50600 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'transactionAttributeSource' of type [class org.springframework.transaction.annotation.AnnotationTransactionAttributeSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | |
2014-04-11 10:15:30.942 INFO 50600 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'transactionInterceptor' of type [class org.springframework.transaction.interceptor.TransactionInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | |
2014-04-11 10:15:30.998 INFO 50600 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.config.internalTransactionAdvisor' of type [class org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | |
2014-04-11 10:15:32.079 INFO 50600 --- [ main] .t.TomcatEmbeddedServletContainerFactory : Server initialized with port: 8080 | |
2014-04-11 10:15:32.642 INFO 50600 --- [ main] o.apache.catalina.core.StandardService : Starting service Tomcat | |
2014-04-11 10:15:32.642 INFO 50600 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/7.0.52 | |
2014-04-11 10:15:33.111 INFO 50600 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext | |
2014-04-11 10:15:33.116 INFO 50600 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 5259 ms | |
2014-04-11 10:15:35.928 INFO 50600 --- [ost-startStop-1] o.s.b.c.e.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/] | |
2014-04-11 10:15:35.940 INFO 50600 --- [ost-startStop-1] o.s.b.c.embedded.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | |
2014-04-11 10:15:38.159 INFO 50600 --- [ main] j.LocalContainerEntityManagerFactoryBean : Building JPA container EntityManagerFactory for persistence unit 'default' | |
2014-04-11 10:15:38.270 INFO 50600 --- [ main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [ | |
name: default | |
...] | |
2014-04-11 10:15:38.563 INFO 50600 --- [ main] org.hibernate.Version : HHH000412: Hibernate Core {4.3.1.Final} | |
2014-04-11 10:15:38.575 INFO 50600 --- [ main] org.hibernate.cfg.Environment : HHH000206: hibernate.properties not found | |
2014-04-11 10:15:38.582 INFO 50600 --- [ main] org.hibernate.cfg.Environment : HHH000021: Bytecode provider name : javassist | |
2014-04-11 10:15:39.491 INFO 50600 --- [ main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {4.0.4.Final} | |
2014-04-11 10:15:39.735 INFO 50600 --- [ main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect | |
2014-04-11 10:15:40.211 INFO 50600 --- [ main] o.h.h.i.ast.ASTQueryTranslatorFactory : HHH000397: Using ASTQueryTranslatorFactory | |
2014-04-11 10:15:41.136 INFO 50600 --- [ main] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000227: Running hbm2ddl schema export | |
Hibernate: drop table customer if exists | |
Hibernate: create table customer (id bigint generated by default as identity (start with 1), firstname varchar(255), name varchar(255), primary key (id)) | |
2014-04-11 10:15:41.162 INFO 50600 --- [ main] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000230: Schema export complete | |
Hibernate: insert into customer (id, firstname, name) values (default, ?, ?) | |
Hibernate: insert into customer (id, firstname, name) values (default, ?, ?) | |
2014-04-11 10:15:42.680 INFO 50600 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | |
2014-04-11 10:15:43.133 INFO 50600 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/],methods=[],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto public org.springframework.web.servlet.ModelAndView com.ewolff.springbootdatajpa.ControllerAndMain.hello() | |
2014-04-11 10:15:43.222 INFO 50600 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | |
2014-04-11 10:15:43.223 INFO 50600 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | |
2014-04-11 10:15:44.536 INFO 50600 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup | |
2014-04-11 10:15:44.688 INFO 50600 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080/http | |
2014-04-11 10:15:44.694 INFO 50600 --- [ main] c.e.springbootdatajpa.ControllerAndMain : Started ControllerAndMain in 17.972 seconds (JVM running for 19.183) | |
^C2014-04-11 10:15:58.704 INFO 50600 --- [ Thread-2] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5acc4ef7: startup date [Fri Apr 11 10:15:27 CEST 2014]; root of context hierarchy | |
2014-04-11 10:15:58.707 INFO 50600 --- [ Thread-2] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown | |
2014-04-11 10:15:58.710 INFO 50600 --- [ Thread-2] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default' | |
2014-04-11 10:15:58.711 INFO 50600 --- [ Thread-2] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000227: Running hbm2ddl schema export | |
Hibernate: drop table customer if exists | |
2014-04-11 10:15:58.715 INFO 50600 --- [ Thread-2] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000230: Schema export complete | |
[wolff@ultralight:~/Documents/workspaces/spring-boot/spring-boot-demos/spring-boot-spring-data-jpa]mvn spring-boot:run | |
[INFO] Scanning for projects... | |
[WARNING] | |
[WARNING] Some problems were encountered while building the effective model for com.ewolff:spring-boot-spring-data-jpa:jar:0.0.1-SNAPSHOT | |
[WARNING] 'parent.relativePath' points at com.ewolff:spring-boot-demos instead of org.springframework.boot:spring-boot-starter-parent, please verify your project structure @ line 7, column 10 | |
[WARNING] | |
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. | |
[WARNING] | |
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects. | |
[WARNING] | |
[INFO] | |
[INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1 | |
[INFO] | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Building spring-boot-spring-data-jpa 0.0.1-SNAPSHOT | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] | |
[INFO] >>> spring-boot-maven-plugin:1.0.1.RELEASE:run (default-cli) @ spring-boot-spring-data-jpa >>> | |
[INFO] | |
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spring-boot-spring-data-jpa --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 1 resource | |
[INFO] Copying 3 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ spring-boot-spring-data-jpa --- | |
[INFO] Nothing to compile - all classes are up to date | |
[INFO] | |
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spring-boot-spring-data-jpa --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ spring-boot-spring-data-jpa --- | |
[INFO] Nothing to compile - all classes are up to date | |
[INFO] | |
[INFO] <<< spring-boot-maven-plugin:1.0.1.RELEASE:run (default-cli) @ spring-boot-spring-data-jpa <<< | |
[INFO] | |
[INFO] --- spring-boot-maven-plugin:1.0.1.RELEASE:run (default-cli) @ spring-boot-spring-data-jpa --- | |
[INFO] Attaching agent: /Users/wolff/.m2/repository/org/springframework/springloaded/1.1.5.RELEASE/springloaded-1.1.5.RELEASE.jar | |
objc[50614]: Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home/bin/java and /Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home/jre/lib/libinstrument.dylib. One of the two will be used. Which one is undefined. | |
. ____ _ __ _ _ | |
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ | |
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ | |
\\/ ___)| |_)| | | | | || (_| | ) ) ) ) | |
' |____| .__|_| |_|_| |_\__, | / / / / | |
=========|_|==============|___/=/_/_/_/ | |
:: Spring Boot :: (v1.0.1.RELEASE) | |
2014-04-11 10:16:07.507 INFO 50614 --- [rAndMain.main()] c.e.springbootdatajpa.ControllerAndMain : Starting ControllerAndMain on ultralight.localdomain with PID 50614 (/Users/wolff/Documents/workspaces/spring-boot/spring-boot-demos/spring-boot-spring-data-jpa/target/classes started by wolff) | |
2014-04-11 10:16:07.577 INFO 50614 --- [rAndMain.main()] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@210a2526: startup date [Fri Apr 11 10:16:07 CEST 2014]; root of context hierarchy | |
2014-04-11 10:16:09.525 INFO 50614 --- [rAndMain.main()] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$a6fa8f92] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | |
2014-04-11 10:16:09.638 INFO 50614 --- [rAndMain.main()] trationDelegate$BeanPostProcessorChecker : Bean 'transactionAttributeSource' of type [class org.springframework.transaction.annotation.AnnotationTransactionAttributeSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | |
2014-04-11 10:16:09.669 INFO 50614 --- [rAndMain.main()] trationDelegate$BeanPostProcessorChecker : Bean 'transactionInterceptor' of type [class org.springframework.transaction.interceptor.TransactionInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | |
2014-04-11 10:16:09.686 INFO 50614 --- [rAndMain.main()] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.config.internalTransactionAdvisor' of type [class org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | |
2014-04-11 10:16:10.205 INFO 50614 --- [rAndMain.main()] .t.TomcatEmbeddedServletContainerFactory : Server initialized with port: 8080 | |
2014-04-11 10:16:10.663 INFO 50614 --- [rAndMain.main()] o.apache.catalina.core.StandardService : Starting service Tomcat | |
2014-04-11 10:16:10.664 INFO 50614 --- [rAndMain.main()] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/7.0.52 | |
2014-04-11 10:16:10.839 INFO 50614 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext | |
2014-04-11 10:16:10.841 INFO 50614 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 3270 ms | |
2014-04-11 10:16:11.961 INFO 50614 --- [ost-startStop-1] o.s.b.c.e.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/] | |
2014-04-11 10:16:11.967 INFO 50614 --- [ost-startStop-1] o.s.b.c.embedded.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | |
2014-04-11 10:16:13.364 INFO 50614 --- [rAndMain.main()] j.LocalContainerEntityManagerFactoryBean : Building JPA container EntityManagerFactory for persistence unit 'default' | |
2014-04-11 10:16:13.404 INFO 50614 --- [rAndMain.main()] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [ | |
name: default | |
...] | |
2014-04-11 10:16:13.571 INFO 50614 --- [rAndMain.main()] org.hibernate.Version : HHH000412: Hibernate Core {4.3.1.Final} | |
2014-04-11 10:16:13.574 INFO 50614 --- [rAndMain.main()] org.hibernate.cfg.Environment : HHH000206: hibernate.properties not found | |
2014-04-11 10:16:13.577 INFO 50614 --- [rAndMain.main()] org.hibernate.cfg.Environment : HHH000021: Bytecode provider name : javassist | |
2014-04-11 10:16:13.843 INFO 50614 --- [rAndMain.main()] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {4.0.4.Final} | |
2014-04-11 10:16:13.987 INFO 50614 --- [rAndMain.main()] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect | |
2014-04-11 10:16:14.281 INFO 50614 --- [rAndMain.main()] o.h.h.i.ast.ASTQueryTranslatorFactory : HHH000397: Using ASTQueryTranslatorFactory | |
2014-04-11 10:16:14.797 INFO 50614 --- [rAndMain.main()] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000227: Running hbm2ddl schema export | |
Hibernate: drop table customer if exists | |
Hibernate: create table customer (id bigint generated by default as identity (start with 1), firstname varchar(255), name varchar(255), primary key (id)) | |
2014-04-11 10:16:14.802 INFO 50614 --- [rAndMain.main()] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000230: Schema export complete | |
2014-04-11 10:16:15.328 INFO 50614 --- [rAndMain.main()] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default' | |
2014-04-11 10:16:15.328 INFO 50614 --- [rAndMain.main()] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000227: Running hbm2ddl schema export | |
Hibernate: drop table customer if exists | |
2014-04-11 10:16:15.330 INFO 50614 --- [rAndMain.main()] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000230: Schema export complete | |
2014-04-11 10:16:15.334 INFO 50614 --- [rAndMain.main()] o.apache.catalina.core.StandardService : Stopping service Tomcat | |
2014-04-11 10:16:15.350 INFO 50614 --- [rAndMain.main()] .b.l.ClasspathLoggingApplicationListener : Application failed to start with classpath: [file:/Users/wolff/Documents/workspaces/spring-boot/spring-boot-demos/spring-boot-spring-data-jpa/src/main/resources/, file:/Users/wolff/Documents/workspaces/spring-boot/spring-boot-demos/spring-boot-spring-data-jpa/src/main/resources/, file:/Users/wolff/Documents/workspaces/spring-boot/spring-boot-demos/spring-boot-spring-data-jpa/target/classes/, file:/Users/wolff/.m2/repository/org/springframework/boot/spring-boot-starter-data-jpa/1.0.1.RELEASE/spring-boot-starter-data-jpa-1.0.1.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/boot/spring-boot-starter-aop/1.0.1.RELEASE/spring-boot-starter-aop-1.0.1.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/boot/spring-boot-starter/1.0.1.RELEASE/spring-boot-starter-1.0.1.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/boot/spring-boot/1.0.1.RELEASE/spring-boot-1.0.1.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.0.1.RELEASE/spring-boot-autoconfigure-1.0.1.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.0.1.RELEASE/spring-boot-starter-logging-1.0.1.RELEASE.jar, file:/Users/wolff/.m2/repository/org/slf4j/jul-to-slf4j/1.7.6/jul-to-slf4j-1.7.6.jar, file:/Users/wolff/.m2/repository/org/slf4j/log4j-over-slf4j/1.7.6/log4j-over-slf4j-1.7.6.jar, file:/Users/wolff/.m2/repository/ch/qos/logback/logback-classic/1.1.2/logback-classic-1.1.2.jar, file:/Users/wolff/.m2/repository/ch/qos/logback/logback-core/1.1.2/logback-core-1.1.2.jar, file:/Users/wolff/.m2/repository/org/yaml/snakeyaml/1.13/snakeyaml-1.13.jar, file:/Users/wolff/.m2/repository/org/springframework/spring-aop/4.0.3.RELEASE/spring-aop-4.0.3.RELEASE.jar, file:/Users/wolff/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar, file:/Users/wolff/.m2/repository/org/aspectj/aspectjrt/1.7.4/aspectjrt-1.7.4.jar, file:/Users/wolff/.m2/repository/org/aspectj/aspectjweaver/1.7.4/aspectjweaver-1.7.4.jar, file:/Users/wolff/.m2/repository/org/springframework/boot/spring-boot-starter-jdbc/1.0.1.RELEASE/spring-boot-starter-jdbc-1.0.1.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/spring-jdbc/4.0.3.RELEASE/spring-jdbc-4.0.3.RELEASE.jar, file:/Users/wolff/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.52/tomcat-jdbc-7.0.52.jar, file:/Users/wolff/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.52/tomcat-juli-7.0.52.jar, file:/Users/wolff/.m2/repository/org/springframework/spring-tx/4.0.3.RELEASE/spring-tx-4.0.3.RELEASE.jar, file:/Users/wolff/.m2/repository/org/hibernate/hibernate-entitymanager/4.3.1.Final/hibernate-entitymanager-4.3.1.Final.jar, file:/Users/wolff/.m2/repository/org/jboss/logging/jboss-logging/3.1.3.GA/jboss-logging-3.1.3.GA.jar, file:/Users/wolff/.m2/repository/org/jboss/logging/jboss-logging-annotations/1.2.0.Beta1/jboss-logging-annotations-1.2.0.Beta1.jar, file:/Users/wolff/.m2/repository/org/hibernate/hibernate-core/4.3.1.Final/hibernate-core-4.3.1.Final.jar, file:/Users/wolff/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar, file:/Users/wolff/.m2/repository/org/jboss/jandex/1.1.0.Final/jandex-1.1.0.Final.jar, file:/Users/wolff/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar, file:/Users/wolff/.m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar, file:/Users/wolff/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.4.Final/hibernate-commons-annotations-4.0.4.Final.jar, file:/Users/wolff/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.1-api/1.0.0.Final/hibernate-jpa-2.1-api-1.0.0.Final.jar, file:/Users/wolff/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.2_spec/1.0.0.Final/jboss-transaction-api_1.2_spec-1.0.0.Final.jar, file:/Users/wolff/.m2/repository/org/javassist/javassist/3.18.1-GA/javassist-3.18.1-GA.jar, file:/Users/wolff/.m2/repository/org/springframework/spring-orm/4.0.3.RELEASE/spring-orm-4.0.3.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/spring-beans/4.0.3.RELEASE/spring-beans-4.0.3.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/spring-core/4.0.3.RELEASE/spring-core-4.0.3.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/data/spring-data-jpa/1.5.1.RELEASE/spring-data-jpa-1.5.1.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/data/spring-data-commons/1.7.1.RELEASE/spring-data-commons-1.7.1.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/spring-context/4.0.3.RELEASE/spring-context-4.0.3.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/spring-expression/4.0.3.RELEASE/spring-expression-4.0.3.RELEASE.jar, file:/Users/wolff/.m2/repository/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.jar, file:/Users/wolff/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.6/jcl-over-slf4j-1.7.6.jar, file:/Users/wolff/.m2/repository/org/springframework/spring-aspects/4.0.3.RELEASE/spring-aspects-4.0.3.RELEASE.jar, file:/Users/wolff/.m2/repository/org/hsqldb/hsqldb/2.3.2/hsqldb-2.3.2.jar, file:/Users/wolff/.m2/repository/org/springframework/boot/spring-boot-starter-thymeleaf/1.0.1.RELEASE/spring-boot-starter-thymeleaf-1.0.1.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.0.1.RELEASE/spring-boot-starter-web-1.0.1.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.0.1.RELEASE/spring-boot-starter-tomcat-1.0.1.RELEASE.jar, file:/Users/wolff/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/7.0.52/tomcat-embed-core-7.0.52.jar, file:/Users/wolff/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/7.0.52/tomcat-embed-el-7.0.52.jar, file:/Users/wolff/.m2/repository/org/apache/tomcat/embed/tomcat-embed-logging-juli/7.0.52/tomcat-embed-logging-juli-7.0.52.jar, file:/Users/wolff/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.3.2/jackson-databind-2.3.2.jar, file:/Users/wolff/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.3.0/jackson-annotations-2.3.0.jar, file:/Users/wolff/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.3.2/jackson-core-2.3.2.jar, file:/Users/wolff/.m2/repository/org/springframework/spring-web/4.0.3.RELEASE/spring-web-4.0.3.RELEASE.jar, file:/Users/wolff/.m2/repository/org/springframework/spring-webmvc/4.0.3.RELEASE/spring-webmvc-4.0.3.RELEASE.jar, file:/Users/wolff/.m2/repository/org/thymeleaf/thymeleaf-spring4/2.1.2.RELEASE/thymeleaf-spring4-2.1.2.RELEASE.jar, file:/Users/wolff/.m2/repository/org/thymeleaf/thymeleaf/2.1.2.RELEASE/thymeleaf-2.1.2.RELEASE.jar, file:/Users/wolff/.m2/repository/ognl/ognl/3.0.6/ognl-3.0.6.jar, file:/Users/wolff/.m2/repository/nz/net/ultraq/thymeleaf/thymeleaf-layout-dialect/1.2.2/thymeleaf-layout-dialect-1.2.2.jar] | |
2014-04-11 10:16:15.351 INFO 50614 --- [rAndMain.main()] utoConfigurationReportLoggingInitializer : | |
Error starting ApplicationContext. To display the auto-configuration report enabled debug logging (start with --debug) | |
[WARNING] | |
java.lang.reflect.InvocationTargetException | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at java.lang.reflect.Method.invoke(Method.java:483) | |
at org.springsource.loaded.ri.ReflectiveInterceptor.jlrMethodInvoke(ReflectiveInterceptor.java:1254) | |
at org.springframework.boot.maven.RunMojo$LaunchRunner.run(RunMojo.java:294) | |
at java.lang.Thread.run(Thread.java:744) | |
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'controllerAndMain': Unsatisfied dependency expressed through constructor argument with index 0 of type [com.ewolff.springbootdatajpa.repository.CustomerRepository]: : Error creating bean with name 'customerRepository': Invocation of init method failed; nested exception is java.lang.NoSuchMethodError: com.ewolff.springbootdatajpa.repository.CustomerRepository.__execute([Ljava.lang.Object;, java.lang.Object, java.lang.String); nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'customerRepository': Invocation of init method failed; nested exception is java.lang.NoSuchMethodError: com.ewolff.springbootdatajpa.repository.CustomerRepository.__execute([Ljava.lang.Object;, java.lang.Object, java.lang.String) | |
at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:747) | |
at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:185) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1114) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1017) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:504) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:475) | |
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:304) | |
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228) | |
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:300) | |
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:195) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:703) | |
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:760) | |
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:482) | |
at org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.refresh(EmbeddedWebApplicationContext.java:120) | |
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:648) | |
at org.springframework.boot.SpringApplication.run(SpringApplication.java:311) | |
at org.springframework.boot.SpringApplication.run(SpringApplication.java:909) | |
at org.springframework.boot.SpringApplication.run(SpringApplication.java:898) | |
at com.ewolff.springbootdatajpa.ControllerAndMain.main(ControllerAndMain.java:35) | |
... 7 more | |
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'customerRepository': Invocation of init method failed; nested exception is java.lang.NoSuchMethodError: com.ewolff.springbootdatajpa.repository.CustomerRepository.__execute([Ljava.lang.Object;, java.lang.Object, java.lang.String) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1553) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:539) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:475) | |
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:304) | |
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228) | |
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:300) | |
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:195) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1017) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:960) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:858) | |
at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:811) | |
at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:739) | |
... 25 more | |
Caused by: java.lang.NoSuchMethodError: com.ewolff.springbootdatajpa.repository.CustomerRepository.__execute([Ljava.lang.Object;, java.lang.Object, java.lang.String) | |
at com.sun.proxy.$Proxy66.<clinit>(Unknown Source) | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) | |
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) | |
at java.lang.reflect.Constructor.newInstance(Constructor.java:408) | |
at java.lang.reflect.Proxy.newProxyInstance(Proxy.java:737) | |
at org.springframework.aop.framework.JdkDynamicAopProxy.getProxy(JdkDynamicAopProxy.java:121) | |
at org.springframework.aop.framework.ProxyFactory.getProxy(ProxyFactory.java:111) | |
at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:163) | |
at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.initAndReturn(RepositoryFactoryBeanSupport.java:224) | |
at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:210) | |
at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:84) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1612) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1549) | |
... 36 more | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] BUILD FAILURE | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Total time: 12.689 s | |
[INFO] Finished at: 2014-04-11T10:16:15+01:00 | |
[INFO] Final Memory: 26M/146M | |
[INFO] ------------------------------------------------------------------------ | |
[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.0.1.RELEASE:run (default-cli) on project spring-boot-spring-data-jpa: An exception occured while running. null: InvocationTargetException: Error creating bean with name 'controllerAndMain': Unsatisfied dependency expressed through constructor argument with index 0 of type [com.ewolff.springbootdatajpa.repository.CustomerRepository]: : Error creating bean with name 'customerRepository': Invocation of init method failed; nested exception is java.lang.NoSuchMethodError: com.ewolff.springbootdatajpa.repository.CustomerRepository.__execute([Ljava.lang.Object;, java.lang.Object, java.lang.String); nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'customerRepository': Invocation of init method failed; nested exception is java.lang.NoSuchMethodError: com.ewolff.springbootdatajpa.repository.CustomerRepository.__execute([Ljava.lang.Object;, java.lang.Object, java.lang.String) -> [Help 1] | |
[ERROR] | |
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. | |
[ERROR] Re-run Maven using the -X switch to enable full debug logging. | |
[ERROR] | |
[ERROR] For more information about the errors and possible solutions, please read the following articles: | |
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException | |
[wolff@ultralight:~/Documents/workspaces/spring-boot/spring-boot-demos/spring-boot-spring-data-jpa] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment