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
Last revisionBoth sides next revision
public:computer:java_spring_framework [2022/08/02 17:57] – [SEE ALSO (Links)] alexpublic:computer:java_spring_framework [2022/08/05 16:36] – [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 2159: Line 2185:
   * [[https://www.hides.kr/1093|Spring Interceptor를 활용하여 JWT인증 구현하기]]   * [[https://www.hides.kr/1093|Spring Interceptor를 활용하여 JWT인증 구현하기]]
   * [[https://steady-coding.tistory.com/594|[Spring] Spring Bean 총 정리]]   * [[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]]
 +
 +
  • public/computer/java_spring_framework.txt
  • Last modified: 2022/08/09 13:03
  • by alex