Getting Started
The fastest way to create your own Hello World application is:
mvn qx:new -Dpackage=org.qooxdoo.hello cd hello mvn compile mvn qx:run
Point your browser to http://localhost:8080/ to see it in action.
What happened?
mvninvokes Mavenmvn qx:newgenerates a skeleton application into a new directoryhello. Code is placed in the packageorg.qooxdoo.hello.mvn compileruns the Java compiler on the applicationmvn qx:runstarts "Tomcat", which is the server that runs your application.- Pointing your browser to
http://localhost:8080starts the application inside Tomcat. The filehello/target/webapp/main/index.htmlis generated and sent to your browser.
What's next
Open the application in Eclipse.