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.4
17
-
* Grace Framework 2023.1.0-M1
16
+
* Spring Boot 3.3.5
17
+
* Grace Framework 2023.1.0-M2
18
18
19
19
### Adding Grace Dependencies
20
20
@@ -154,36 +154,37 @@ class GraceApplication implements CommandLineRunner {
154
154
' |____| .__|_| |_|_| |_\__, | / / / /
155
155
=========|_|==============|___/=/_/_/_/
156
156
157
-
:: Spring Boot :: (v3.3.4)
158
-
159
-
2024-10-03T10:39:23.625+08:00 INFO 78432 --- [ restartedMain] grace.guides.GraceApplication : Starting GraceApplication using Java 17.0.12 with PID 78432 (/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)
160
-
2024-10-03T10:39:23.626+08:00 INFO 78432 --- [ restartedMain] grace.guides.GraceApplication : No active profile set, falling back to 1 default profile: "default"
161
-
2024-10-03T10:39:23.646+08:00 INFO 78432 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
162
-
2024-10-03T10:39:23.646+08:00 INFO 78432 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
163
-
2024-10-03T10:39:24.051+08:00 INFO 78432 --- [ restartedMain] g.plugins.DefaultGrailsPluginManager : Total 3 plugins loaded successfully, take in 38 ms
164
-
2024-10-03T10:39:24.373+08:00 INFO 78432 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port 8080 (http)
165
-
2024-10-03T10:39:24.379+08:00 INFO 78432 --- [ restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2024-10-03T10:39:24.397+08:00 INFO 78432 --- [ restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
168
-
2024-10-03T10:39:24.397+08:00 INFO 78432 --- [ restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 751 ms
169
-
2024-10-03T10:39:24.565+08:00 INFO 78432 --- [ restartedMain] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:file:./build/boot_dev'
170
-
2024-10-03T10:39:24.702+08:00 INFO 78432 --- [ restartedMain] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2024-10-03T10:39:24.850+08:00 INFO 78432 --- [ restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
157
+
:: Spring Boot :: (v3.3.5)
158
+
159
+
2024-10-25T16:30:05.233+08:00 INFO 15375 --- [ restartedMain] grace.guides.GraceApplication : Starting GraceApplication using Java 17.0.12 with PID 15375 (/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)
160
+
2024-10-25T16:30:05.234+08:00 INFO 15375 --- [ restartedMain] grace.guides.GraceApplication : No active profile set, falling back to 1 default profile: "default"
161
+
2024-10-25T16:30:05.254+08:00 INFO 15375 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
162
+
2024-10-25T16:30:05.255+08:00 INFO 15375 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
163
+
2024-10-25T16:30:05.674+08:00 INFO 15375 --- [ restartedMain] g.plugins.DefaultGrailsPluginManager : Total 3 plugins loaded successfully, take in 36 ms
164
+
2024-10-25T16:30:05.902+08:00 INFO 15375 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port 8080 (http)
165
+
2024-10-25T16:30:05.915+08:00 INFO 15375 --- [ restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2024-10-25T16:30:05.937+08:00 INFO 15375 --- [ restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
168
+
2024-10-25T16:30:05.938+08:00 INFO 15375 --- [ restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 682 ms
169
+
2024-10-25T16:30:06.095+08:00 INFO 15375 --- [ restartedMain] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:file:./build/boot_dev'
170
+
2024-10-25T16:30:06.241+08:00 INFO 15375 --- [ restartedMain] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.15.Final
2024-10-25T16:30:06.388+08:00 INFO 15375 --- [ restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
173
173
Hibernate: drop table if exists post CASCADE
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
-
2024-10-03T10:39:25.349+08:00 WARN 78432 --- [ 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-10-03T10:39:25.399+08:00 INFO 78432 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
177
-
2024-10-03T10:39:25.402+08:00 INFO 78432 --- [ restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint beneath base path '/actuator'
178
-
2024-10-03T10:39:25.441+08:00 INFO 78432 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port 8080 (http) with context path '/'
179
-
2024-10-03T10:39:25.450+08:00 INFO 78432 --- [ restartedMain] grace.guides.GraceApplication : Started GraceApplication in 2.004 seconds (process running for 2.362)
2024-10-25T16:30:06.767+08:00 WARN 15375 --- [ 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-10-25T16:30:06.940+08:00 WARN 15375 --- [ 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-10-25T16:30:06.997+08:00 INFO 15375 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
178
+
2024-10-25T16:30:07.004+08:00 INFO 15375 --- [ restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint beneath base path '/actuator'
179
+
2024-10-25T16:30:07.039+08:00 INFO 15375 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port 8080 (http) with context path '/'
180
+
2024-10-25T16:30:07.051+08:00 INFO 15375 --- [ restartedMain] grace.guides.GraceApplication : Started GraceApplication in 1.988 seconds (process running for 2.337)
0 commit comments