[Spring] How to exclude html in Spring MVC
□ Tech (Software)[Spring] How to exclude html in Spring MVC
[스프링] Spring MVC 에서 html 예외처리
IntelliJ 써볼까 해서... 집에서 다운로드 받아서 스프링으로 간단 프로젝트 만들다가 메모를 남겨본다.
프레임웍 처음부터 새로 구성할때마다 이걸 찾아서 했던거 같다.
뭐... 기존 소스가 있으면 찾아봐도 될텐데 집이라서....
Spring MVC xml 에 한 줄 넣어주면 된다.
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.bacgyber.helloworld"/>
<mvc:default-servlet-handler/>
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
</beans:beans>
딱 0.5초~ 아래 공감버튼 누르는데 사용해주시면
제 기분은 5배 Up 이 될거 같아요 :)
'□ Tech (Software)' 카테고리의 다른 글
How to trace log Axis on client side with log4j (0) | 2017.01.06 |
---|---|
[issue solved] Loading Excel Data on ExtJs Grid using SheetJs (0) | 2016.12.30 |
Network Monitoring on Windows (0) | 2016.11.18 |
3way merge tool 조사 (0) | 2016.11.04 |
How to disconnect from SVN on TrotoiseSvn (0) | 2016.06.08 |