Skip to content

Commit 4a8aa71

Browse files
committed
My springboot blog
0 parents  commit 4a8aa71

File tree

488 files changed

+129646
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

488 files changed

+129646
-0
lines changed

.gitignore

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
HELP.md
2+
target/
3+
!.mvn/wrapper/maven-wrapper.jar
4+
!**/src/main/**/target/
5+
!**/src/test/**/target/
6+
7+
### STS ###
8+
.apt_generated
9+
.classpath
10+
.factorypath
11+
.project
12+
.settings
13+
.springBeans
14+
.sts4-cache
15+
16+
### IntelliJ IDEA ###
17+
.idea
18+
*.iws
19+
*.iml
20+
*.ipr
21+
22+
### NetBeans ###
23+
/nbproject/private/
24+
/nbbuild/
25+
/dist/
26+
/nbdist/
27+
/.nb-gradle/
28+
build/
29+
!**/src/main/**/build/
30+
!**/src/test/**/build/
31+
32+
### VS Code ###
33+
.vscode/

.mvn/wrapper/maven-wrapper.jar

57.4 KB
Binary file not shown.

.mvn/wrapper/maven-wrapper.properties

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.4/apache-maven-3.8.4-bin.zip
2+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar

log/bolg-dev.log/spring.log

+1,848
Large diffs are not rendered by default.
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2022-03-12 21:07:48.758 INFO 2528 --- [restartedMain] com.joey.blog.BlogApplication : Starting BlogApplication using Java 1.8.0_301 on LAPTOP-933F4D1S with PID 2528 (C:\Users\shenjinyun\Desktop\blog\target\classes started by Lenovo-中科大厦 in C:\Users\shenjinyun\Desktop\blog)
2+
2022-03-12 21:07:48.760 INFO 2528 --- [restartedMain] com.joey.blog.BlogApplication : The following 1 profile is active: "dev"
3+
2022-03-12 21:07:51.996 WARN 2528 --- [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
4+
2022-03-12 21:07:52.298 WARN 2528 --- [restartedMain] ion$DefaultTemplateResolverConfiguration : Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)
5+
2022-03-12 21:07:52.482 INFO 2528 --- [restartedMain] com.joey.blog.BlogApplication : Started BlogApplication in 4.788 seconds (JVM running for 8.053)
6+
2022-03-12 21:10:29.211 INFO 6180 --- [restartedMain] com.joey.blog.BlogApplication : Starting BlogApplication using Java 1.8.0_301 on LAPTOP-933F4D1S with PID 6180 (C:\Users\shenjinyun\Desktop\blog\target\classes started by Lenovo-中科大厦 in C:\Users\shenjinyun\Desktop\blog)
7+
2022-03-12 21:10:29.218 INFO 6180 --- [restartedMain] com.joey.blog.BlogApplication : The following 1 profile is active: "dev"
8+
2022-03-12 21:10:29.349 INFO 6180 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
9+
2022-03-12 21:10:29.350 INFO 6180 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
10+
2022-03-12 21:10:30.426 INFO 6180 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
11+
2022-03-12 21:10:30.450 INFO 6180 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 10 ms. Found 0 JPA repository interfaces.
12+
2022-03-12 21:10:31.224 INFO 6180 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
13+
2022-03-12 21:10:31.239 INFO 6180 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
14+
2022-03-12 21:10:31.240 INFO 6180 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.58]
15+
2022-03-12 21:10:31.365 INFO 6180 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
16+
2022-03-12 21:10:31.365 INFO 6180 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2014 ms
17+
2022-03-12 21:10:31.618 INFO 6180 --- [restartedMain] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
18+
2022-03-12 21:10:31.670 INFO 6180 --- [restartedMain] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.5.Final
19+
2022-03-12 21:10:31.931 INFO 6180 --- [restartedMain] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
20+
2022-03-12 21:10:32.037 INFO 6180 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
21+
2022-03-12 21:10:32.184 INFO 6180 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
22+
2022-03-12 21:10:32.212 INFO 6180 --- [restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect
23+
2022-03-12 21:10:32.481 INFO 6180 --- [restartedMain] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
24+
2022-03-12 21:10:32.493 INFO 6180 --- [restartedMain] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
25+
2022-03-12 21:10:32.545 WARN 6180 --- [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
26+
2022-03-12 21:10:32.835 WARN 6180 --- [restartedMain] ion$DefaultTemplateResolverConfiguration : Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)
27+
2022-03-12 21:10:32.945 INFO 6180 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
28+
2022-03-12 21:10:32.992 INFO 6180 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
29+
2022-03-12 21:10:33.005 INFO 6180 --- [restartedMain] com.joey.blog.BlogApplication : Started BlogApplication in 4.795 seconds (JVM running for 6.605)
30+
2022-03-12 21:10:39.431 INFO 6180 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
31+
2022-03-12 21:10:39.431 INFO 6180 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
32+
2022-03-12 21:10:39.433 INFO 6180 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms

0 commit comments

Comments
 (0)