Problem with classpath butt when working with gwt and jsp

Hi I created an ajax application using GWT. And I created only one jsp file that connects to my data access level in order to get some information to show it to the user.

In my jsp file, I imported some of my classes into this jsp file to use them. When I call this jsp file in development mode, Jetty creates a file with the extension .class next to all my java files !!!! while my compiled java files are located in / war / WEB -INF / classes, but jetty doesn't understand where they are, and creates a .class file next to each java file.

I am trying to use netbeans and the free form template template for netbeans!

+5
source share
1 answer
  • Check your project configuration, you may have specified the wrong web folder for Jetty.

  • Try using Eclipse and the Google Eclipse plugin. I think it is more stable and guaranteed to work.

0
source

All Articles