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.10
17
-
* Grace Framework 2023.3.0-M2
16
+
* Spring Boot 3.3.11
17
+
* Grace Framework 2023.3.0-RC1
18
18
* Groovy 4.0.26
19
19
20
20
### Adding Grace Dependencies
@@ -153,39 +153,39 @@ Staring the App by execute the following Gradle task,
153
153
' |____| .__|_| |_|_| |_\__, | / / / /
154
154
=========|_|==============|___/=/_/_/_/
155
155
156
-
:: Spring Boot :: (v3.3.10)
157
-
158
-
2025-04-24T21:44:47.518+08:00 INFO 10788 --- [ restartedMain] grace.guides.GraceApplication : Starting GraceApplication using Java 17.0.14 with PID 10788 (/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)
159
-
2025-04-24T21:44:47.519+08:00 INFO 10788 --- [ restartedMain] grace.guides.GraceApplication : No active profile set, falling back to 1 default profile: "default"
160
-
2025-04-24T21:44:47.536+08:00 INFO 10788 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
161
-
2025-04-24T21:44:47.536+08:00 INFO 10788 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
162
-
2025-04-24T21:44:48.029+08:00 INFO 10788 --- [ restartedMain] g.plugins.DefaultGrailsPluginManager : Total 3 plugins loaded successfully, take in 31 ms
163
-
2025-04-24T21:44:48.214+08:00 INFO 10788 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port 8080 (http)
164
-
2025-04-24T21:44:48.220+08:00 INFO 10788 --- [ restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2025-04-24T21:44:48.250+08:00 INFO 10788 --- [ restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
167
-
2025-04-24T21:44:48.250+08:00 INFO 10788 --- [ restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 714 ms
168
-
2025-04-24T21:44:48.424+08:00 INFO 10788 --- [ restartedMain] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2025-04-24T21:44:48.648+08:00 INFO 10788 --- [ restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
156
+
:: Spring Boot :: (v3.3.11)
157
+
158
+
2025-05-05T22:07:36.520+08:00 INFO 21532 --- [ restartedMain] grace.guides.GraceApplication : Starting GraceApplication using Java 17.0.15 with PID 21532 (/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)
159
+
2025-05-05T22:07:36.521+08:00 INFO 21532 --- [ restartedMain] grace.guides.GraceApplication : No active profile set, falling back to 1 default profile: "default"
160
+
2025-05-05T22:07:36.538+08:00 INFO 21532 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
161
+
2025-05-05T22:07:36.538+08:00 INFO 21532 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
162
+
2025-05-05T22:07:37.081+08:00 INFO 21532 --- [ restartedMain] g.plugins.DefaultGrailsPluginManager : Total 3 plugins loaded successfully, take in 32 ms
163
+
2025-05-05T22:07:37.273+08:00 INFO 21532 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port 8080 (http)
164
+
2025-05-05T22:07:37.279+08:00 INFO 21532 --- [ restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2025-05-05T22:07:37.308+08:00 INFO 21532 --- [ restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
167
+
2025-05-05T22:07:37.308+08:00 INFO 21532 --- [ restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 770 ms
168
+
2025-05-05T22:07:37.486+08:00 INFO 21532 --- [ restartedMain] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2025-05-05T22:07:37.726+08:00 INFO 21532 --- [ restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
171
171
Hibernate: drop table if exists comment CASCADE
172
172
Hibernate: drop table if exists post CASCADE
173
173
Hibernate: create table comment (id bigint generated by default as identity, version bigint not null, text varchar(255) not null, primary key (id))
174
174
Hibernate: create table post (id bigint generated by default as identity, version bigint not null, title varchar(255) not null, primary key (id))
175
-
2025-04-24T21:44:49.049+08:00 WARN 10788 --- [ 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
-
2025-04-24T21:44:49.246+08:00 WARN 10788 --- [ 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
-
2025-04-24T21:44:49.289+08:00 INFO 10788 --- [ restartedMain] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:file:./build/boot_dev'
178
-
2025-04-24T21:44:49.306+08:00 INFO 10788 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
179
-
2025-04-24T21:44:49.314+08:00 INFO 10788 --- [ restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 15 endpoints beneath base path '/actuator'
180
-
2025-04-24T21:44:49.355+08:00 INFO 10788 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port 8080 (http) with context path '/'
181
-
2025-04-24T21:44:49.366+08:00 INFO 10788 --- [ restartedMain] grace.guides.GraceApplication : Started GraceApplication in 2.023 seconds (process running for 2.369)
2025-05-05T22:07:38.132+08:00 WARN 21532 --- [ 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
+
2025-05-05T22:07:38.329+08:00 WARN 21532 --- [ 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
+
2025-05-05T22:07:38.370+08:00 INFO 21532 --- [ restartedMain] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:file:./build/boot_dev'
178
+
2025-05-05T22:07:38.389+08:00 INFO 21532 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
179
+
2025-05-05T22:07:38.396+08:00 INFO 21532 --- [ restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 15 endpoints beneath base path '/actuator'
180
+
2025-05-05T22:07:38.437+08:00 INFO 21532 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port 8080 (http) with context path '/'
181
+
2025-05-05T22:07:38.448+08:00 INFO 21532 --- [ restartedMain] grace.guides.GraceApplication : Started GraceApplication in 2.104 seconds (process running for 2.438)
0 commit comments