파일업로드 관련하여 심볼릭링크 설정했으나 먹히지 않는 경우가 발생
tomcat은 보안상의 이유로 자체적으로 심볼릭링크를 막고있다.
tomcat/conf/context.xml 에서 설정
<Context>
...
<Resources allowLinking="true" />
</Context>
파일업로드 관련하여 심볼릭링크 설정했으나 먹히지 않는 경우가 발생
tomcat은 보안상의 이유로 자체적으로 심볼릭링크를 막고있다.
tomcat/conf/context.xml 에서 설정
<Context>
...
<Resources allowLinking="true" />
</Context>