GWT Deployment Confusion, Please give some guidelines
I wanted t开发者_Go百科o know one thing. When deploying a GWT application on the server, lets say an application in which there are client files Greeting.java(entrypoint), service.java,serviceAsync.java and server file serviceImpl.java(), only the client files will converted to javascript. After compilation, I take the war file and place it on the server, but where to place the server file that is serviceImpl.java???
The war file will also contain a /WEB-INF
folder with the web.xml
your libs and the other java classes needed for the server side.
So you only need to copy your war file in the proper webapps
folder from your server.
精彩评论