-
Notifications
You must be signed in to change notification settings - Fork 0
[Minsu] Week4 미션 #30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
miinsoo
wants to merge
11
commits into
Minsu
Choose a base branch
from
Minsu-week4
base: Minsu
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[Minsu] Week4 미션 #30
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
83a6686
chore: 초기 프로젝트 세팅
miinsoo f9f5399
feat: .gitignore 세팅
miinsoo 4e6423c
feat: .env.example 세팅
miinsoo 8773ddc
feat: member 도메인 구조 세팅
miinsoo 049f66e
feat: mission 도메인 구조 세팅
miinsoo 6a2ce27
feat: notification 도메인 구조 세팅
miinsoo da47846
feat: region 도메인 구조 세팅
miinsoo 1d575b8
feat: review 도메인 구조 세팅
miinsoo 92a7890
feat: member 도메인 로그인 시, 소셜 타입 enum 설정
miinsoo efaa7a3
feat: store 도메인 구조 세팅
miinsoo cb462e6
feat: swagger config 설정 세팅
miinsoo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| UB_USER=your_user_name | ||
| DB_PW=your_password | ||
| DB_URL=jdbc:mysql://localhost:3306/umc10th |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| /gradlew text eol=lf | ||
| *.bat text eol=crlf | ||
| *.jar binary |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| HELP.md | ||
| .gradle | ||
| build/ | ||
| !gradle/wrapper/gradle-wrapper.jar | ||
| !**/src/main/**/build/ | ||
| !**/src/test/**/build/ | ||
|
|
||
| ### STS ### | ||
| .apt_generated | ||
| .classpath | ||
| .factorypath | ||
| .project | ||
| .settings | ||
| .springBeans | ||
| .sts4-cache | ||
| bin/ | ||
| !**/src/main/**/bin/ | ||
| !**/src/test/**/bin/ | ||
|
|
||
| ### IntelliJ IDEA ### | ||
| .idea | ||
| *.iws | ||
| *.iml | ||
| *.ipr | ||
| out/ | ||
| !**/src/main/**/out/ | ||
| !**/src/test/**/out/ | ||
|
|
||
| ### NetBeans ### | ||
| /nbproject/private/ | ||
| /nbbuild/ | ||
| /dist/ | ||
| /nbdist/ | ||
| /.nb-gradle/ | ||
|
|
||
| ### VS Code ### | ||
| .vscode/ | ||
|
|
||
| ### 보안 ### | ||
| .env | ||
| application.yml | ||
|
|
||
| ### mac ### | ||
| .DS_Store |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| plugins { | ||
| id 'java' | ||
| id 'org.springframework.boot' version '4.0.5' | ||
| id 'io.spring.dependency-management' version '1.1.7' | ||
| } | ||
|
|
||
| group = 'com.example' | ||
| version = '0.0.1-SNAPSHOT' | ||
| description = 'umc10th' | ||
|
|
||
| java { | ||
| toolchain { | ||
| languageVersion = JavaLanguageVersion.of(21) | ||
| } | ||
| } | ||
|
|
||
| repositories { | ||
| mavenCentral() | ||
| } | ||
|
|
||
| dependencies { | ||
| implementation 'org.springframework.boot:spring-boot-starter-data-jpa' | ||
| implementation 'org.springframework.boot:spring-boot-starter-webmvc' | ||
| compileOnly 'org.projectlombok:lombok' | ||
| runtimeOnly 'com.mysql:mysql-connector-j' | ||
| annotationProcessor 'org.projectlombok:lombok' | ||
| testImplementation 'org.springframework.boot:spring-boot-starter-data-jpa-test' | ||
| testImplementation 'org.springframework.boot:spring-boot-starter-webmvc-test' | ||
| testCompileOnly 'org.projectlombok:lombok' | ||
| testRuntimeOnly 'org.junit.platform:junit-platform-launcher' | ||
| testAnnotationProcessor 'org.projectlombok:lombok' | ||
|
|
||
| // Swagger | ||
| implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:3.0.1' | ||
| implementation 'org.springdoc:springdoc-openapi-starter-webmvc-api:3.0.1' | ||
| } | ||
|
|
||
| tasks.named('test') { | ||
| useJUnitPlatform() | ||
| } | ||
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip | ||
| networkTimeout=10000 | ||
| validateDistributionUrl=true | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JPA와 MySQL 드라이버를 추가했는데 프로젝트에 datasource 설정 파일이 없어 애플리케이션(또는
@SpringBootTest) 시작 시 DataSource 자동구성 단계에서 실패할 가능성이 매우 높습니다. 스프링 부트는 JPA starter가 있으면 DB 연결 구성을 먼저 검증하므로, 학습용 프로젝트라도 실행 가능한 최소 설정이 필요합니다.application.yml(또는 profile별 설정)에 URL/계정 정보를 명시하고, 테스트는 H2나 별도 test profile로 분리해 주세요. 다음으로는 Spring Boot 자동구성 조건과 profile 기반 설정 분리를 학습하면 도움이 됩니다.Useful? React with 👍 / 👎.