2018년 2월 3일 토요일
nexacro 인터셉터 설정
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.6.0-rc4</version>
</dependency>
</dependencies>
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**" />
<mvc:exclude-mapping path="/rest/**" />
<bean id="loggerInterceptor" class="com.nexacro.spring.servlet.NexacroInterceptor"></bean>
</mvc:interceptor>
</mvc:interceptors>
<mvc:annotation-driven>
<mvc:argument-resolvers>
<bean id="nexacroMethodArgumentResolver"
class="com.nexacro.spring.resolve.NexacroMethodArgumentResolver" />
</mvc:argument-resolvers>
<mvc:return-value-handlers>
<bean id="nexacroMethodReturnValueHandler"
class="com.nexacro.spring.resolve.NexacroHandlerMethodReturnValueHandler">
<!-- <property name="view" value="nexacroView" /> -->
<property name="view" ref="nexacroView" />
<property name="fileView" ref="nexacroFileView" />
</bean>
</mvc:return-value-handlers>
</mvc:annotation-driven>
피드 구독하기:
글 (Atom)
nexacro 인터셉터 설정
<dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId...
-
cat coap.log | awk '{print $2}' | uniq -c ip별 통계 grep "날짜" 로그파일명 | awk '{print $1}' | sort | uniq -c ...
-
https://github.com/brahalla/Cerberus
-
공통 처리의 구현 방법 법 일반적인 처리는 구현 방법 설명 javax.servlet.Filter.ServletRequestListener 요청 시작과 요청 종료시의 타이밍에서 어떤 작업을 수행 할 수 있습니다. javax.servle...