일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- spring security
- spring boot 1.3
- 인텔리J
- Multi DataSource
- spring-mybatis
- spring boot devtools
- devtools
- WebApplicationInitializer
- 데브툴즈
- KSUG
- 스프링
- Spring Boot
- spring camp
- spring cloud
- spring test mvc
- apache thrift
- spring boot mybatis
- Fiilter
- mybatis
- spring cloud config
- spring
- OAuth 2.0
- Spring MVC
- 스프링시큐리티
- @MVC
- 스프링 부트
- ServletContextInitializer
- Spring Security OAuth
- OAuth2.0
- elasticache
- Today
- Total
목록spring (14)
홍이의 개발 노트
Spring test mvc 발표자료 from SuHong Lee 예전에 발표한 자료이제야 올린다.
기존 Spring MVC 3.0.x의 태그의 전략은 org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMappingorg.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter클래스를 사용하여 맵핑 및 여러 클래스를 추가하여 구성이 되었다. 하지만 이번 3.1 버전이 나오며 이야기가 달라졌다.org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMappingorg.springframework.web.servlet.mvc.method.annotation.RequestMappi..
@MVC가 어떻게 움직이는지 궁금 해서 소스를 보고 있는 중에 매개변수 타입에 따라 리턴 되는 객체를 컨트롤 하는 부분을 찾았다. AnnotationMethodHandlerAdapter 클래스 파일 안에 ServletHandlerMethodInvoker 이라는 클래스 안에서 resolveStandardArgument의 이 메소드 안에서 이부분을 찾았다. @Override protected Object resolveStandardArgument(Class parameterType, NativeWebRequest webRequest) throws Exception { HttpServletRequest request = webRequest.getNativeRequest(HttpServletRequest.cla..
편의상 반말을 사용 하겠습니다. 보통 서블릿 필터를 등록 할 때에는 필터 내부에서는 스프링 빈을 주입 받지 못해 많이 불편하다. 그래서 스프링에서 필터를 지원 해주는 클래스가 존재 하는데 그 클래스가 DelegatingFilterProxy 라는 클래스 이다. 보통을 그냥 서블릿 필터를 등록해서 사용하면되나 문제는 Spring security 프레임워크를 사용 시에는 필수 사용 하게되게된다. springSecurityFilterChain org.springframework.web.filter.DelegatingFilterProxy springSecurityFilterChain /*