java.io.FileNotFoundException (permission denied) despite chmod 777

前端 未结 6 1602
暖寄归人
暖寄归人 2020-12-09 16:31

I have faced strange poblem while writing Grails application deployed on Tomcat.

After creating simple test controller I want to write test contents in package com

6条回答
  •  囚心锁ツ
    2020-12-09 17:17

    Finally I have solved the problem. One of the directory in path haven't executable permission for other group, so as @JustinKSU suggested, there was no possibility to go throught whole path.

    chmod o+x /home/user solved the problem.

提交回复
热议问题