public:computer:java_spring_framework

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
public:computer:java_spring_framework [2022/08/02 16:21] – [SEE ALSO (Links)] alexpublic:computer:java_spring_framework [2022/08/09 13:03] (current) – [SEE ALSO (Links)] alex
Line 24: Line 24:
     * pom.xml     * pom.xml
  
 +<code>
 +C:.                              
 +│  .gitignore // gitignore 파일
 +│  build.gradle // 빌드 스크립트
 +│  gradlew // gradle 실행 sh 스크립트
 +│  gradlew.bat // gradle 윈도우 실행 배치 파일
 +│  LICENSE // 라이센스 정보
 +│  README.md // 간단한 설명 파일
 +│  settings.gradle // gradle 설정 파일,
 +
 +├─.gradle ... 생략(자동 생성) ...
 +├─.idea ... 생략(자동 생성) ...
 +├─build ... 생략(자동 생성) ...
 +├─gradle // gradle wrapper
 +│  └─wrapper
 +│          gradle-wrapper.jar
 +│          gradle-wrapper.properties
 +└─src
 +    ├─main // 애플리케이션 메인
 +    │  ├─java // 패키지 작성
 +    │  └─resources // mapper xml, configuration yml, etc.
 +    │          application.yml // 기본 애플리케이션 설정
 +    └─test // 애플리케이션 테스트
 +        ├─java // 테스트 작성
 +        └─resources // 테스트용 resources
 +</code>
  
  
Line 2156: Line 2182:
   * [[https://godekdls.github.io/Reactive%20Spring/springwebflux2/|Spring Web on Reactive Stack- Spring WebFlux (2)]]   * [[https://godekdls.github.io/Reactive%20Spring/springwebflux2/|Spring Web on Reactive Stack- Spring WebFlux (2)]]
   * [[https://gsmesie692.tistory.com/267|Java 8과 함수형 프로그래밍: Lambda, Stream, Functional Interface]]   * [[https://gsmesie692.tistory.com/267|Java 8과 함수형 프로그래밍: Lambda, Stream, Functional Interface]]
 +
 +  * [[https://www.hides.kr/1093|Spring Interceptor를 활용하여 JWT인증 구현하기]]
 +  * [[https://steady-coding.tistory.com/594|[Spring] Spring Bean 총 정리]]
 +  * [[https://steady-coding.tistory.com/614|[Java] 어노테이션 정리]]
 +  * [[https://github.com/Apress/pro-spring-5|Apress / pro-spring-5]] This repository accompanies [Pro Spring 5th Edition](http://www.apress.com/9781484228074) by Iuliana Cosmina, Rob Harrop, Chris Schaefer, Clarence Ho (Apress, 2017).
 +  * [[https://github.com/gilbutITbook/006987|gilbutITbook / 006987]] 전문가를 위한 스프링 5 (006987)
 +  * [[https://github.com/cheese10yun/TIL|cheese10yun / TIL]]
 +  * https://github.com/nililee/spring-5-recipes https://www.hanbit.co.kr/src/10103 https://www.apress.com/9781484227893 도서 스프링 5 레시피 소스코드
 +
 +
  • public/computer/java_spring_framework.1659424869.txt.gz
  • Last modified: 2022/08/02 16:21
  • by alex