-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspring-boot-3.2.8.log
50 lines (48 loc) · 5.38 KB
/
spring-boot-3.2.8.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
> Task :checkKotlinGradlePluginConfigurationErrors
> Task :processResources UP-TO-DATE
> Task :processTestResources NO-SOURCE
> Task :compileKotlin
> Task :compileJava NO-SOURCE
> Task :classes UP-TO-DATE
> Task :compileTestKotlin
> Task :compileTestJava NO-SOURCE
> Task :testClasses UP-TO-DATE
14:19:30.228 [Test worker] INFO org.springframework.test.context.support.AnnotationConfigContextLoaderUtils -- Could not detect default configuration classes for test class [org.springboot.issues.springbootdata329issue.ApplicationTests]: ApplicationTests does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
14:19:30.351 [Test worker] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper -- Found @SpringBootConfiguration org.springboot.issues.springbootdata329issue.Application for test class org.springboot.issues.springbootdata329issue.ApplicationTests
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v3.2.8)
2025-02-11T14:19:30.658+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] o.s.i.s.ApplicationTests : Starting ApplicationTests using Java 17.0.11 with PID 21947 (started by mrsic in /Users/mrsic/Desktop/Projekte/Playground/SpringBootDataTest_3.2.9)
2025-02-11T14:19:30.659+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] o.s.i.s.ApplicationTests : No active profile set, falling back to 1 default profile: "default"
2025-02-11T14:19:30.943+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2025-02-11T14:19:30.991+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 39 ms. Found 1 JPA repository interface.
2025-02-11T14:19:31.037+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] beddedDataSourceBeanFactoryPostProcessor : Replacing 'dataSource' DataSource bean with embedded version
2025-02-11T14:19:31.174+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] o.s.j.d.e.EmbeddedDatabaseFactory : Starting embedded database: url='jdbc:h2:mem:fa8f90c4-3b75-4691-a4f4-62c56c9f5ab9;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=false', username='sa'
2025-02-11T14:19:31.408+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2025-02-11T14:19:31.456+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] org.hibernate.Version : HHH000412: Hibernate ORM core version 6.4.9.Final
2025-02-11T14:19:31.492+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] o.h.c.internal.RegionFactoryInitiator : HHH000026: Second-level cache disabled
2025-02-11T14:19:31.670+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] o.s.o.j.p.SpringPersistenceUnitInfo : No LoadTimeWeaver setup: ignoring JPA class transformer
2025-02-11T14:19:32.415+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
Hibernate: drop table if exists child_table cascade
Hibernate: drop table if exists parent_table cascade
Hibernate: create table child_table (child_id varchar(255), parent_id varchar(255) not null)
Hibernate: create table parent_table (parent_id varchar(255) not null, primary key (parent_id))
Hibernate: alter table if exists child_table add constraint FKaa3x5n334uxfqf3k1gw482hc8 foreign key (parent_id) references parent_table
2025-02-11T14:19:32.455+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2025-02-11T14:19:33.214+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ Test worker] o.s.i.s.ApplicationTests : Started ApplicationTests in 2.793 seconds (process running for 3.883)
Hibernate: select sbtpe1_0.parent_id,c1_0.parent_id,c1_0.child_id from parent_table sbtpe1_0 left join child_table c1_0 on sbtpe1_0.parent_id=c1_0.parent_id where sbtpe1_0.parent_id=?
Hibernate: insert into parent_table (parent_id) values (?)
Hibernate: insert into child_table (parent_id,child_id) values (?,?)
Hibernate: select sbtpe1_0.parent_id,c1_0.child_id from parent_table sbtpe1_0 left join child_table c1_0 on sbtpe1_0.parent_id=c1_0.parent_id where c1_0.child_id=?
OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended
2025-02-11T14:19:33.926+01:00 INFO 21947 --- [SpringBootDataTest_3.2.9] [ionShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
Hibernate: drop table if exists child_table cascade
Hibernate: drop table if exists parent_table cascade
> Task :test
BUILD SUCCESSFUL in 7s
5 actionable tasks: 4 executed, 1 up-to-date
14:19:34: Execution finished ':test --tests "org.springboot.issues.springbootdata329issue.ApplicationTests"'.