Classes not seeing each other in JSP

后端 未结 4 1459
醉话见心
醉话见心 2021-01-28 09:27

In a tomcat JSP application I have this directory layout:

webapps/
    myProjectName/
        index.jsp
        WEB-INF/
            classes/
                myp         


        
4条回答
  •  粉色の甜心
    2021-01-28 09:50

    Run this in your classes folder:

    javac -cp /usr/local/tomcat/webapps/myProjectName/WEB-INF/classes *.java
    

    You need to include the classpath during compile time.

提交回复
热议问题