Store with a Database"
Line 21: | Line 21: | ||
[[File:ZKEss_many_problems.png]] | [[File:ZKEss_many_problems.png]] | ||
− | If you see errors stating that annotations are only available in Java 1.5, please right click on one of the errors and click Quick Fix: | + | If you see errors stating that annotations are only available in Java 1.5, please right click on one of the errors and click '''Quick Fix''': |
[[File:ZKEss_annotations_1.5.png]] | [[File:ZKEss_annotations_1.5.png]] |
Revision as of 08:40, 22 June 2011
This article is out of date, please refer to http://books.zkoss.org/zkessentials-book/master/ for more up to date information.
When it comes to importing a project into eclipse, the easiest way is to make use of the WAR file, which is provided in the SVN. We can directly import the WAR file using eclipse’s import mechanism.
- To start importing, please go to File -> Import in eclipse and you will see the following dialog
- Type WAR into the filter text and then select the storewithdb WAR file you just downloaded and press Next.
- Download the WAR file from https://zkbooks.googlecode.com/svn/trunk/zkessentials/storewithdb/storewithdb.war and place it into an accessible folder
- In the WAR import screen, browse for the WAR file and select it. The rest of the fields should be filled out automatically
- Click Next and the WAR file will be imported
- You should now have a clean project imported with no errors. At this point you can run the index.zul page on your server
Dealing with Errors
You may encounter a lot of errors, just like the screen below.
If you see errors stating that annotations are only available in Java 1.5, please right click on one of the errors and click Quick Fix:
In the following screen, please make sure change project compliance to JRE 1.5 is selected and click Finish:
Once it's done, we should have about one item left in the problems list, stating that Java compiler level does not match the version of the installed Java project facet:
Right click on the error and click quick fix as before. Then in the following screen select the item "Change Java project facet version to Java 5.0" and press Finish.
You should find that all the errors are now fixed and you can continue to run the application.