You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -13,8 +13,8 @@ Learn how to build a Spring Boot application using GORM.
13
13
14
14
### Versions
15
15
16
-
* Spring Boot 3.3.6
17
-
* Grace Framework 2023.1.0
16
+
* Spring Boot 3.3.7
17
+
* Grace Framework 2023.2.0-M3
18
18
19
19
### Adding Grace Dependencies
20
20
@@ -152,39 +152,39 @@ Staring the App by execute the following Gradle task,
152
152
' |____| .__|_| |_|_| |_\__, | / / / /
153
153
=========|_|==============|___/=/_/_/_/
154
154
155
-
:: Spring Boot :: (v3.3.6)
156
-
157
-
2024-11-22T20:34:58.182+08:00 INFO 9580 --- [ restartedMain] grace.guides.GraceApplication : Starting GraceApplication using Java 17.0.12 with PID 9580 (/Users/rain/Development/github/grace/grace-guides/gs-spring-boot-gorm/build/classes/groovy/main started by rain in /Users/rain/Development/github/grace/grace-guides/gs-spring-boot-gorm)
158
-
2024-11-22T20:34:58.183+08:00 INFO 9580 --- [ restartedMain] grace.guides.GraceApplication : No active profile set, falling back to 1 default profile: "default"
159
-
2024-11-22T20:34:58.201+08:00 INFO 9580 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
160
-
2024-11-22T20:34:58.201+08:00 INFO 9580 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
161
-
2024-11-22T20:34:58.616+08:00 INFO 9580 --- [ restartedMain] g.plugins.DefaultGrailsPluginManager : Total 3 plugins loaded successfully, take in 38 ms
162
-
2024-11-22T20:34:58.831+08:00 INFO 9580 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port 8080 (http)
163
-
2024-11-22T20:34:58.845+08:00 INFO 9580 --- [ restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2024-11-22T20:34:58.873+08:00 INFO 9580 --- [ restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
166
-
2024-11-22T20:34:58.873+08:00 INFO 9580 --- [ restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 672 ms
167
-
2024-11-22T20:34:59.035+08:00 INFO 9580 --- [ restartedMain] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:file:./build/boot_dev'
168
-
2024-11-22T20:34:59.180+08:00 INFO 9580 --- [ restartedMain] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2024-11-22T20:34:59.325+08:00 INFO 9580 --- [ restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
155
+
:: Spring Boot :: (v3.3.7)
156
+
157
+
2024-12-26T16:58:46.556+08:00 INFO 2158 --- [ restartedMain] grace.guides.GraceApplication : Starting GraceApplication using Java 17.0.12 with PID 2158 (/Users/rain/Development/github/grace/grace-guides/gs-spring-boot-gorm/build/classes/groovy/main started by rain in /Users/rain/Development/github/grace/grace-guides/gs-spring-boot-gorm)
158
+
2024-12-26T16:58:46.557+08:00 INFO 2158 --- [ restartedMain] grace.guides.GraceApplication : No active profile set, falling back to 1 default profile: "default"
159
+
2024-12-26T16:58:46.575+08:00 INFO 2158 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
160
+
2024-12-26T16:58:46.575+08:00 INFO 2158 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
161
+
2024-12-26T16:58:46.992+08:00 INFO 2158 --- [ restartedMain] g.plugins.DefaultGrailsPluginManager : Total 3 plugins loaded successfully, take in 36 ms
162
+
2024-12-26T16:58:47.218+08:00 INFO 2158 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port 8080 (http)
163
+
2024-12-26T16:58:47.224+08:00 INFO 2158 --- [ restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2024-12-26T16:58:47.252+08:00 INFO 2158 --- [ restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
166
+
2024-12-26T16:58:47.252+08:00 INFO 2158 --- [ restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 677 ms
167
+
2024-12-26T16:58:47.462+08:00 INFO 2158 --- [ restartedMain] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2024-12-26T16:58:47.682+08:00 INFO 2158 --- [ restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
171
170
Hibernate: drop table if exists comment CASCADE
172
171
Hibernate: drop table if exists post CASCADE
173
172
Hibernate: create table comment (id bigint generated by default as identity, version bigint not null, text varchar(255) not null, primary key (id))
174
173
Hibernate: create table post (id bigint generated by default as identity, version bigint not null, title varchar(255) not null, primary key (id))
175
-
2024-11-22T20:34:59.726+08:00 WARN 9580 --- [ restartedMain] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
176
-
2024-11-22T20:34:59.896+08:00 WARN 9580 --- [ restartedMain] .b.a.g.t.GroovyTemplateAutoConfiguration : Cannot find template location: classpath:/templates/ (please add some templates, check your Groovy configuration, or set spring.groovy.template.check-template-location=false)
177
-
2024-11-22T20:34:59.944+08:00 INFO 9580 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
178
-
2024-11-22T20:34:59.952+08:00 INFO 9580 --- [ restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint beneath base path '/actuator'
179
-
2024-11-22T20:34:59.988+08:00 INFO 9580 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port 8080 (http) with context path '/'
180
-
2024-11-22T20:34:59.999+08:00 INFO 9580 --- [ restartedMain] grace.guides.GraceApplication : Started GraceApplication in 1.979 seconds (process running for 2.307)
2024-12-26T16:58:48.080+08:00 WARN 2158 --- [ restartedMain] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
175
+
2024-12-26T16:58:48.256+08:00 WARN 2158 --- [ restartedMain] .b.a.g.t.GroovyTemplateAutoConfiguration : Cannot find template location: classpath:/templates/ (please add some templates, check your Groovy configuration, or set spring.groovy.template.check-template-location=false)
176
+
2024-12-26T16:58:48.298+08:00 INFO 2158 --- [ restartedMain] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:file:./build/boot_dev'
177
+
2024-12-26T16:58:48.316+08:00 INFO 2158 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
178
+
2024-12-26T16:58:48.324+08:00 INFO 2158 --- [ restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint beneath base path '/actuator'
179
+
2024-12-26T16:58:48.362+08:00 INFO 2158 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port 8080 (http) with context path '/'
180
+
2024-12-26T16:58:48.373+08:00 INFO 2158 --- [ restartedMain] grace.guides.GraceApplication : Started GraceApplication in 1.991 seconds (process running for 2.349)
0 commit comments