我试图通过intellij idea tomcat服务器vm选项将路径传递给jaas.conf
。
我尝试了以下vm选项:
-Djava.security.auth.login.config=%CATALINA_BASE%/conf/jaas.config
-Djava.security.auth.login.config=$CATALINA_BASE$/conf/jaas.config
-Djava.security.auth.login.config=$CATALINA_BASE/conf/jaas.config
他们都没有工作。错误是这样的:
java.lang.SecurityException: $CATALINA_BASE$/conf/jaas.config (No such file or directory)
唯一有效的解决方案是使用intellij idea tomcat服务器目录的绝对路径:
-Djava.security.auth.login.config=C:\Users\myUser\.IntelliJIdea13\system\tomcat\tomcat_(1)_myProject\conf\jaas.config
有没有办法在intellij idea tomcat server vm options中传递CATALINA_BASE?