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/05/18 13:31] – [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 2089: Line 2115:
   * [[https://velog.io/@max9106/Spring-%ED%94%84%EB%A1%9D%EC%8B%9C-AOP-xwk5zy57ee|[Spring] 스프링 기초(백기선 님의 스프링 프레임워크 핵심기술 강좌 공부)]]   * [[https://velog.io/@max9106/Spring-%ED%94%84%EB%A1%9D%EC%8B%9C-AOP-xwk5zy57ee|[Spring] 스프링 기초(백기선 님의 스프링 프레임워크 핵심기술 강좌 공부)]]
   * [[https://n1tjrgns.tistory.com/261|[Spring] 스프링 AOP with (프록시 패턴)]]   * [[https://n1tjrgns.tistory.com/261|[Spring] 스프링 AOP with (프록시 패턴)]]
 +  * [[https://mangkyu.tistory.com/175?category=761302|[Spring] Spring의 AOP 프록시 구현 방법(JDK 동적 프록시, CGLib 프록시)과 @EnableAspectJAutoProxy의 proxyTargetClass - (3/3)]] \\ [[https://mangkyu.tistory.com/161|[Spring] AOP(Aspect Oriented Programming, 관점 지향 프로그래밍)의 이해 - (1/3)]]  \\ [[https://mangkyu.tistory.com/121|[SpringBoot] AOP(Aspect Oriented Programming, 관점 지향 프로그래밍)의 개념 및 사용 방법 예제 코드 - (2/3)]]
 +  * [[https://sa1341.github.io/2019/05/25/%EC%8A%A4%ED%94%84%EB%A7%81-AOP-%EA%B0%9C%EB%85%90-%EB%B0%8F-Proxy%EB%A5%BC-%EC%9D%B4%EC%9A%A9%ED%95%9C-%EA%B5%AC%EB%8F%99%EC%9B%90%EB%A6%AC/|스프링 AOP 개념 및 Proxy를 이용한 구동원리]]
 +  * [[https://sabarada.tistory.com/97|[Spring] Spring AOP - 원리편]] \\ [[https://sabarada.tistory.com/94|[Spring] Spring AOP - 기본 이론편]] \\ [[https://sabarada.tistory.com/95|[Spring] Spring AOP - 실전편]]
 +  * [[http://wiki.x2bee.com/pages/viewpage.action?pageId=7767258|MyBatis @Mapper 인터페이스는 어떻게 스프링 빈으로 와이어될 수 있을까?]]
 +  * [[https://jakubstas.com/spring-professional-study-notes/#.YoR7V6hByUl|Spring Professional Study Notes]]
 +  * [[http://wiki.x2bee.com/pages/viewpage.action?pageId=7766156|Proxy 패턴, 그리고 Dynamic Proxy API]]
  
  
Line 2108: Line 2140:
   * [[https://namocom.tistory.com/962|스프링 캐시 인터셉터]]   * [[https://namocom.tistory.com/962|스프링 캐시 인터셉터]]
   * [[https://www.codetd.com/ru/article/12868220|SpringBoot 구성 로딩 원리에 대한 포괄적 인 분석]]   * [[https://www.codetd.com/ru/article/12868220|SpringBoot 구성 로딩 원리에 대한 포괄적 인 분석]]
 +  * [[https://bkjeon1614.tistory.com/676|[SpringBoot] Ehcache를 사용한 Cache 사용]]
 +  * [[https://bcp0109.tistory.com/326|Spring Boot Swagger 3.x 적용]]
 +  * [[https://blog2.deliwind.com/20201127/java-swagger-ui-3-0-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0/|java-swagger-ui-3.0-사용하기]]
 +  * [[https://velog.io/@qoxogus/SpringBoot%EC%97%90%EC%84%9C-Ehcache-%EC%82%AC%EC%9A%A9%ED%95%B4%EB%B3%B4%EA%B8%B0|SpringBoot에서 Ehcache 사용해보기]]
 +  * [[https://goodsaem.github.io/spring/107-springboot-swagger.html#_2-%E1%84%8C%E1%85%A5%E1%86%A8%E1%84%8B%E1%85%AD%E1%86%BC|7. Swagger 3.x 설치]]
  
 +----
 +  * [[https://gaemi606.tistory.com/entry/Spring-Boot-profile%EC%84%A4%EC%A0%95|Spring Boot | profile설정 ( + 2.4이상 버전 변경내용 추가 )]]
  
 ---- ----
Line 2115: Line 2154:
   * 어드바이저   * 어드바이저
   * 이벤트   * 이벤트
 +
 +  * [[https://jaehun2841.github.io/2018/08/25/2018-08-18-spring-filter-interceptor/#Spring-Request-Flow|Spring Filter와 Interceptor]]
 +  * [[https://goddaehee.tistory.com/154|[Spring] Filter, Interceptor, AOP 차이 및 정리]]
 +  * [[https://springsource.tistory.com/4|[Spring 3 - MVC] 핸들러 인터셉터]]
  
 ---- ----
Line 2135: Line 2178:
   * Tests   * Tests
     * unit test     * unit test
 +
 +  * [[https://godekdls.github.io/Reactive%20Spring/springwebflux/|Spring Web on Reactive Stack- Spring WebFlux (1)]]
 +  * [[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://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.1652848302.txt.gz
  • Last modified: 2022/05/18 13:31
  • by alex