개발자의 끄적끄적

[JBOSS AS 7 팁] eclipse 사용시 jsp 등 자원 변경 즉시 적용 팁 ( auto deploy ) [펌] 본문

개발/was & server

[JBOSS AS 7 팁] eclipse 사용시 jsp 등 자원 변경 즉시 적용 팁 ( auto deploy ) [펌]

효벨 2020. 3. 11. 03:00
728x90
반응형

[JBOSS AS 7 팁] eclipse 사용시 jsp 등 자원 변경 즉시 적용 팁 ( auto deploy ) [펌]

 

* 참고 : jboss as 7.1.1의 버전에서는 버그로 인해 아예 적용 안될수가 있다하니.. 구글신과 접선하기를...

           설정파일 변경 후 제대로 적용이 안될수있으므로 clean 실행하자~

 

 

standalone.xml 의 설정을 변경해주어야 한다.

 

1.    <subsystem xmlns="urn:jboss:domain:web:1.1" native="false" default-virtual-server="default-host">

하위에 다음의 코드를 추가.

            <configuration>
                <jsp-configuration development="true"/>
            </configuration>

 

 

2. <subsystem xmlns="urn:jboss:domain:deployment-scanner:1.1">

하위에 내용을 다음과 같이 수정

 

 

<deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000"

auto-deploy-exploded="false" deployment-timeout="500"/>

 



출처: https://androphil.tistory.com/433?category=522268 [소림사의 홍반장!]

반응형

'개발 > was & server' 카테고리의 다른 글

[was] apache 보안 설정  (0) 2020.03.22
[was] jboss 설치방법 [펌]  (0) 2020.03.19
[iis] ssl 인증서(*.pfx) 갱신 [펌]  (0) 2020.03.09
[was] Apache CORS 설정 [펌]  (0) 2020.02.07
[was & server] apache virtualhost 설정  (0) 2020.01.21
Comments