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 |
Tags
- Kafka
- 플레이 프레임워크
- confluent
- Elasticsearch
- spring-cloud-stream
- kafkastreams
- schema registry
- kafka interactive query
- spring-batch
- Logstash
- play framework
- Spring
- 한빛미디어
- Elk
- kafka streams
- spring-kafka
- scala
- gradle
- enablekafkastreams
- statestore
- scala 2.10
- RabbitMQ
- Slick
- coursera
- avo
- kafkastream
- springboot
- aws
- reactive
- 카프카
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