Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Spring
- 플레이 프레임워크
- Kafka
- spring-kafka
- RabbitMQ
- play framework
- spring-cloud-stream
- aws
- scala
- reactive
- springboot
- kafkastream
- statestore
- kafkastreams
- schema registry
- 한빛미디어
- confluent
- 카프카
- Slick
- gradle
- avo
- scala 2.10
- Elk
- spring-batch
- Elasticsearch
- kafka streams
- Logstash
- enablekafkastreams
- kafka interactive query
- coursera
Archives
- Today
- Total
b
DefaultServletHttpRequestHandler 본문
* @author Jeremy Grelle
* @author Juergen Hoeller
* @since 3.0.4
public void handleRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
RequestDispatcher rd = this.servletContext.getNamedDispatcher(this.defaultServletName);
if (rd == null) {
throw new IllegalStateException("A RequestDispatcher could not be located for the default servlet '" +
this.defaultServletName +"'");
}
rd.forward(request, response);
}
<mvc:default-servlet-handler/> 의 실제 구현체, DispatcherServlet이 제어하지 못하는 리소스를 만나면, 서버의 디폴트 서블릿으로 요청을 넘긴다.
'spring framework' 카테고리의 다른 글
angularjs , $resource 와 spring @requestBody (0) | 2013.11.11 |
---|---|
spring interceptor (0) | 2013.11.05 |
mybatis interface mapper기반에서 HashMap 가져오기. (2) | 2013.09.11 |
SqlMapClientTemplate 의 내부 (0) | 2013.02.01 |
SpringOne2GX 2012 컨퍼런스 후기 나눔 세미나 (from OLC) (0) | 2013.01.09 |
Comments