Creating an application with GWT – Application creator

Today I have started with applicationCreator.cmd in the GWT folder!
Adding something important, GWT follows some structure in maintaining projects. As per specification, this is my assumption.
org/vaigai/shiksha – > this is the project root
org/vaigai/shiksha/client ->client side source files
org/vaigai/shiksha/server ->server side code
org/vaigai/shiksha/public ->web resources, public

oh no, dont get tired, the application creator script will do all these for us!

D:\projects\gwt\gwt-windows-1.0.21>applicationCreator.cmd org.vaigai.shiksha.client.myapp Created directory D:\projects\gwt\gwt-windows-1.0.21\src Created directory D:\projects\gwt\gwt-windows-1.0.21\src\org\vaigai\shiksha Created directory D:\projects\gwt\gwt-windows-1.0.21\src\org\vaigai\shiksha\client Created directory D:\projects\gwt\gwt-windows-1.0.21\src\org\vaigai\shiksha\public Created file D:\projects\gwt\gwt-windows-1.0.21\src\org\vaigai\shiksha\myapp.gwt.xml Created file D:\projects\gwt\gwt-windows-1.0.21\src\org\vaigai\shiksha\public\myapp.html Created file D:\projects\gwt\gwt-windows-1.0.21\src\org\vaigai\shiksha\client\myapp.java Created file D:\projects\gwt\gwt-windows-1.0.21\myapp-shell.cmd Created file D:\projects\gwt\gwt-windows-1.0.21\myapp-compile.cmd

Hey, amazing, a hello world is readily available with this newly launched project! see the client folder
Directory of D:\projects\gwt\gwt-windows-1.0.21\src\org\vaigai\shiksha\client 01/26/2007 01:50 AM 1,208 myapp.java 1 File(s) 1,208 bytes

also the hosted mode shell MyApplication-shell and the compiler MyApplication-compile is also issued with the newly created project.
issing the command myapp-shell will launch your program!! :)
coool..

then we can start editing the java, compile, view etc etc....!

so, hereafter lets see thost applications one by one!

for now, bookmark the link
http://code.google.com/webtoolkit

Comments are closed.