@@ -2,14 +2,30 @@ This project is a step-by-step Spring-GWT tutorial.
2
2
It is inspired from the article written by Alex Tretyakov on 2012-08-30
3
3
[ Spring and GWT tutorial. Part 5 - UiBinder] ( http://alextretyakov.blogspot.fr/2012/08/using-uibinder.html ) .
4
4
5
- The project was created as a "Maven Project" in Eclipse .
5
+ The project was created as a "Maven Project" with GWT cli-tool .
6
6
Then files from hellogwt were added, commented and modified to run with SQLite instead of MySQL.
7
7
8
- The source code is licensed under [ Apache License 2.0] ( http://www.apache.org/licenses/LICENSE-2.0 ) .
8
+ # Steps
9
+
10
+ These are the steps:
11
+
12
+ 1 . Spring Configuration
13
+ 2 . Adding GWT
14
+ 3 . GWT RPC services
15
+ 4 . MyBatis and SQLite
16
+ 5 . UIBinder
17
+ 6 . Using a SplitLayoutPanel
18
+ 7 . Internationalisation
19
+ 8 . Hibernate and H2 (keeping MyBatis and SQLite in the configuration)
20
+
21
+ Next steps:
22
+
23
+ 10 . Unit tests
24
+ 11 . Use of GXT
9
25
10
- = Run the application =
26
+ # Run the application
11
27
12
- == In command line ==
28
+ ## In command line
13
29
14
30
1 . Build the project by executing ` mvn clean install ` command.
15
31
Now we have application war-file.
@@ -30,14 +46,14 @@ If you have configured `$HOME/.m2/settings.xml` with a server called Tomcat6:
30
46
You can use ` mvn tomcat6:redeploy ` if the war was deployed.
31
47
3 . Go to http://localhost:8080/hellogwt/ .
32
48
33
- == In Eclipse ==
49
+ ## In Eclipse
34
50
35
51
You need to install those plug-ins:
36
52
- Eclipse Git Team Provider
37
53
38
54
Right-click on project and click on ` Run As > Run on Server ` .
39
55
40
- == In NetBeans ==
56
+ ## In NetBeans
41
57
42
58
You need to install those plugins:
43
59
- GWT4NB
@@ -46,16 +62,20 @@ You need to install those plugins:
46
62
47
63
Click on ` Run project ` or type F6.
48
64
49
- = Debug the application =
65
+ # Development
50
66
51
- == In Maven ==
67
+ ## In Maven
52
68
53
69
- ` mvn compile ` only compiles Java sources.
54
70
- ` mvn gwt:compile ` only compiles GWT module and writes extras.
55
71
56
- == In NetBeans ==
72
+ ## In NetBeans
57
73
58
74
1 . Define breakpoints if needed.
59
75
2 . Click on ` Debug Project ` or type Ctrl+F5.
60
76
3 . In the project custom menu, click on ` Run GWT code server ` .
61
77
4 . Visit the url said by the code server to install the bookmarklet.
78
+
79
+ # License
80
+
81
+ The source code is licensed under [ Apache License 2.0] ( http://www.apache.org/licenses/LICENSE-2.0 ) .
0 commit comments