Skip to content

Commit 4552439

Browse files
authored
Merge pull request #344 from qwertyuiop4m/part3-김창우-spirnt7
[김창우] sprint7
2 parents d65d70e + 86c45cb commit 4552439

File tree

154 files changed

+119676
-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.

154 files changed

+119676
-0
lines changed

.gitignore

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
.gradle
2+
build/
3+
!gradle/wrapper/gradle-wrapper.jar
4+
!**/src/main/**/build/
5+
!**/src/test/**/build/
6+
7+
### IntelliJ IDEA ###
8+
.idea/modules.xml
9+
.idea/jarRepositories.xml
10+
.idea/compiler.xml
11+
.idea/libraries/
12+
.idea
13+
*.iws
14+
*.iml
15+
*.ipr
16+
out/
17+
!**/src/main/**/out/
18+
!**/src/test/**/out/
19+
*.yaml
20+
*.logs
21+
### Eclipse ###
22+
.apt_generated
23+
.classpath
24+
.factorypath
25+
.project
26+
.settings
27+
.springBeans
28+
.sts4-cache
29+
bin/
30+
!**/src/main/**/bin/
31+
!**/src/test/**/bin/
32+
33+
### NetBeans ###
34+
/nbproject/private/
35+
/nbbuild/
36+
/dist/
37+
/nbdist/
38+
/.nb-gradle/
39+
40+
### VS Code ###
41+
.vscode/
42+
43+
### Mac OS ###
44+
.DS_Store

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.logs/application.2025-03-27.log

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
2025-03-27 17:35:37.395 [main] INFO com.sprint.mission.discodeit.DiscodeitApplication -Starting DiscodeitApplication using Java 17.0.12 with PID 12220 (C:\Users\qwert\1-sprint-mission\build\classes\java\main started by qwert in C:\Users\qwert\1-sprint-mission)
2+
2025-03-27 17:35:37.399 [main] INFO com.sprint.mission.discodeit.DiscodeitApplication -The following 1 profile is active: "local"
3+
2025-03-27 17:35:39.203 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate -Bootstrapping Spring Data JPA repositories in DEFAULT mode.
4+
2025-03-27 17:35:39.570 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate -Finished Spring Data repository scanning in 353 ms. Found 6 JPA repository interfaces.
5+
2025-03-27 17:35:40.746 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer -Tomcat initialized with port 8080 (http)
6+
2025-03-27 17:35:40.767 [main] INFO org.apache.coyote.http11.Http11NioProtocol -Initializing ProtocolHandler ["http-nio-8080"]
7+
2025-03-27 17:35:40.771 [main] INFO org.apache.catalina.core.StandardService -Starting service [Tomcat]
8+
2025-03-27 17:35:40.771 [main] INFO org.apache.catalina.core.StandardEngine -Starting Servlet engine: [Apache Tomcat/10.1.34]
9+
2025-03-27 17:35:40.933 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] -Initializing Spring embedded WebApplicationContext
10+
2025-03-27 17:35:40.934 [main] INFO org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext -Root WebApplicationContext: initialization completed in 3435 ms
11+
2025-03-27 17:35:41.156 [main] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Starting...
12+
2025-03-27 17:35:41.569 [main] INFO com.zaxxer.hikari.pool.HikariPool -HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@c318864
13+
2025-03-27 17:35:41.573 [main] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Start completed.
14+
2025-03-27 17:35:41.761 [main] INFO org.hibernate.jpa.internal.util.LogHelper -HHH000204: Processing PersistenceUnitInfo [name: default]
15+
2025-03-27 17:35:41.927 [main] INFO org.hibernate.Version -HHH000412: Hibernate ORM core version 6.6.5.Final
16+
2025-03-27 17:35:42.014 [main] INFO org.hibernate.cache.internal.RegionFactoryInitiator -HHH000026: Second-level cache disabled
17+
2025-03-27 17:35:42.814 [main] INFO org.springframework.orm.jpa.persistenceunit.SpringPersistenceUnitInfo -No LoadTimeWeaver setup: ignoring JPA class transformer
18+
2025-03-27 17:35:43.040 [main] INFO org.hibernate.orm.connections.pooling -HHH10001005: Database info:
19+
Database JDBC URL [Connecting through datasource 'HikariDataSource (HikariPool-1)']
20+
Database driver: undefined/unknown
21+
Database version: 17.4
22+
Autocommit mode: undefined/unknown
23+
Isolation level: undefined/unknown
24+
Minimum pool size: undefined/unknown
25+
Maximum pool size: undefined/unknown
26+
2025-03-27 17:35:45.324 [main] INFO org.hibernate.engine.transaction.jta.platform.internal.JtaPlatformInitiator -HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
27+
2025-03-27 17:35:46.010 [main] INFO org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean -Initialized JPA EntityManagerFactory for persistence unit 'default'
28+
2025-03-27 17:35:46.692 [main] INFO org.springframework.data.jpa.repository.query.QueryEnhancerFactory -Hibernate is in classpath; If applicable, HQL parser will be used.
29+
2025-03-27 17:35:48.021 [main] INFO org.springframework.boot.autoconfigure.web.servlet.WelcomePageHandlerMapping -Adding welcome page: class path resource [static/index.html]
30+
2025-03-27 17:35:48.091 [main] INFO org.springframework.validation.beanvalidation.OptionalValidatorFactoryBean -Failed to set up a Bean Validation provider: jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath.
31+
2025-03-27 17:35:49.013 [main] INFO org.apache.coyote.http11.Http11NioProtocol -Starting ProtocolHandler ["http-nio-8080"]
32+
2025-03-27 17:35:49.060 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer -Tomcat started on port 8080 (http) with context path '/'
33+
2025-03-27 17:35:49.083 [main] INFO com.sprint.mission.discodeit.DiscodeitApplication -Started DiscodeitApplication in 13.866 seconds (process running for 15.321)
34+
2025-03-27 17:35:51.927 [http-nio-8080-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] -Initializing Spring DispatcherServlet 'dispatcherServlet'
35+
2025-03-27 17:35:51.928 [http-nio-8080-exec-1] INFO org.springframework.web.servlet.DispatcherServlet -Initializing Servlet 'dispatcherServlet'
36+
2025-03-27 17:35:51.930 [http-nio-8080-exec-1] INFO org.springframework.web.servlet.DispatcherServlet -Completed initialization in 2 ms
37+
2025-03-27 17:35:52.052 [http-nio-8080-exec-1] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
38+
2025-03-27 17:35:55.847 [http-nio-8080-exec-2] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
39+
2025-03-27 17:35:59.848 [http-nio-8080-exec-3] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
40+
2025-03-27 17:36:03.853 [http-nio-8080-exec-4] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
41+
2025-03-27 17:36:07.860 [http-nio-8080-exec-5] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
42+
2025-03-27 17:36:11.848 [http-nio-8080-exec-6] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
43+
2025-03-27 17:36:15.856 [http-nio-8080-exec-7] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
44+
2025-03-27 17:36:19.843 [http-nio-8080-exec-8] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
45+
2025-03-27 17:36:23.855 [http-nio-8080-exec-9] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
46+
2025-03-27 17:36:27.842 [http-nio-8080-exec-10] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
47+
2025-03-27 17:36:31.852 [http-nio-8080-exec-1] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
48+
2025-03-27 17:36:35.048 [http-nio-8080-exec-5] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
49+
2025-03-27 17:36:35.124 [http-nio-8080-exec-3] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
50+
2025-03-27 17:36:35.247 [http-nio-8080-exec-7] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
51+
2025-03-27 17:36:36.280 [http-nio-8080-exec-9] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
52+
2025-03-27 17:36:36.337 [http-nio-8080-exec-8] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
53+
2025-03-27 17:36:39.300 [http-nio-8080-exec-9] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
54+
2025-03-27 17:36:41.512 [http-nio-8080-exec-6] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
55+
2025-03-27 17:36:41.546 [http-nio-8080-exec-4] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
56+
2025-03-27 17:36:42.090 [http-nio-8080-exec-10] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
57+
2025-03-27 17:36:42.275 [http-nio-8080-exec-5] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
58+
2025-03-27 17:36:42.844 [http-nio-8080-exec-2] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
59+
2025-03-27 17:36:43.914 [http-nio-8080-exec-1] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
60+
2025-03-27 17:36:45.281 [http-nio-8080-exec-9] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
61+
2025-03-27 17:36:45.499 [http-nio-8080-exec-7] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
62+
2025-03-27 17:36:47.847 [http-nio-8080-exec-6] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
63+
2025-03-27 17:36:48.274 [http-nio-8080-exec-4] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
64+
2025-03-27 17:36:50.899 [http-nio-8080-exec-5] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
65+
2025-03-27 17:36:51.277 [http-nio-8080-exec-8] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
66+
2025-03-27 17:36:53.951 [http-nio-8080-exec-1] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
67+
2025-03-27 17:36:54.287 [http-nio-8080-exec-9] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
68+
2025-03-27 17:36:57.006 [http-nio-8080-exec-7] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
69+
2025-03-27 17:36:57.277 [http-nio-8080-exec-6] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
70+
2025-03-27 17:36:58.671 [http-nio-8080-exec-5] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
71+
2025-03-27 17:36:58.679 [http-nio-8080-exec-8] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
72+
2025-03-27 17:36:59.148 [http-nio-8080-exec-2] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
73+
2025-03-27 17:36:59.848 [http-nio-8080-exec-1] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
74+
2025-03-27 17:37:00.290 [http-nio-8080-exec-9] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
75+
2025-03-27 17:37:00.661 [http-nio-8080-exec-6] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
76+
2025-03-27 17:37:00.682 [http-nio-8080-exec-4] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
77+
2025-03-27 17:37:01.231 [http-nio-8080-exec-10] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
78+
2025-03-27 17:37:01.967 [http-nio-8080-exec-5] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
79+
2025-03-27 17:37:03.055 [http-nio-8080-exec-8] WARN org.hibernate.orm.query -HHH90003004: firstResult/maxResults specified with collection fetch; applying in memory
80+
2025-03-27 17:37:03.330 [http-nio-8080-exec-2] INFO com.sprint.mission.discodeit.service.basic.BasicChannelService -Find all channels by userId: userId=abfbc5ad-b5bc-48c6-b48e-7b25ef412fe0,조회된 채널 수=3
81+
2025-03-27 17:37:03.434 [SpringApplicationShutdownHook] INFO org.springframework.boot.web.embedded.tomcat.GracefulShutdown -Commencing graceful shutdown. Waiting for active requests to complete
82+
2025-03-27 17:37:03.869 [tomcat-shutdown] INFO org.springframework.boot.web.embedded.tomcat.GracefulShutdown -Graceful shutdown complete
83+
2025-03-27 17:37:03.907 [SpringApplicationShutdownHook] INFO org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean -Closing JPA EntityManagerFactory for persistence unit 'default'
84+
2025-03-27 17:37:03.908 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Shutdown initiated...
85+
2025-03-27 17:37:03.919 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource -HikariPool-1 - Shutdown completed.

0 commit comments

Comments
 (0)