Home  >  Q&A  >  body text

java - tomcat,不用IDE,编译后的class文件jsp要怎么导入?

不用IDE的情况

我编译好了class文件,文件名叫Tp.class,然后按网上说的,放到了test/web-inf/classes/目录下(test是放到webapps下的一个目录。web-inf里只有lib,classes是我新建的)

然后在test下的index.jsp中,我用<%@page import="Tp"%>导入

但提示The import Tp cannot be resolved

网上找这个提示相关的问题,都是用Eclipse产生的,然后怎么用Eclipse 解决的

我想问,不用IDE要怎么办呢?当然,这不是我用IDE然后问的,我没用IDE(因为不知道怎么直接做出来就用IDE来做,感觉好不舒服,什么都不知道的感觉)。

谢谢!

高洛峰高洛峰2763 days ago648

reply all(1)I'll reply

  • 高洛峰

    高洛峰2017-04-18 10:58:54

    The import url is wrong, you can try this method:
    1. Create a new package in the IDE, assuming the package name is mypackage
    2. Write the java class Tp you want in mypackage
    3. Compile the . Put the class file in the classes directory under web-INF
    4.jsp and write like this
    <%@page import="mypackage.Tp"%>
    That should be enough.
    For reference, see: http://stackoverflow.com/ques...

    reply
    0
  • Cancelreply