본문 바로가기

Programming/Network/Server/DB

[Tomcat] server.xml 의 reloadable 속성

reloadable

Set to true if you want Catalina to monitor classes in /WEB-INF/classes/ and /WEB-INF/lib for changes, and automatically reload the web application if a change is detected. This feature is very useful during application development, but it requires significant runtime overhead and is not recommended for use on deployed production applications. That's why the default setting for this attribute is false. You can use the Manager web application, however, to trigger reloads of deployed applications on demand.


tomcat 5.5 server.xml 내용 중 ... 에서 클래스 파일 reroding 설정 부분.. 

개발할때는 reloadable = true; 를 사용하지만, 실제 서비스 할때는 reloadable = false; 을 권장한다.

수정된 class 파일을 적용할때는 Tomcat/Manager 을 사용할 수 있다... 


 출처: http://tomcat.apache.org/tomcat-5.5-doc/config/context.html