You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.asciidoc
+43-30
Original file line number
Diff line number
Diff line change
@@ -9,14 +9,14 @@ Project creation
9
9
** Add a new configuration for WildFly
10
10
** Add `index.html` in ``WebContent''
11
11
**``Run as'', ``Run on Server''
12
-
** Change content on `index.html` and show LiveReload
12
+
** Change content on `index.html` and show http://docs.jboss.org/tools/whatsnew/livereload/livereload-news-1.0.0.Alpha2.html[LiveReload]
13
13
14
14
Servlet
15
15
-------
16
16
17
17
* Add a new Servlet
18
18
** In Servers tab, select the module, right-click and select ``Restart'' to restart the module
19
-
** Show http://localhost:8080/helloworld/HelloServlet
19
+
** Show http://localhost:8080/helloworld/TestServlet
20
20
21
21
Persistence
22
22
-----------
@@ -156,7 +156,7 @@ public void create(@Min(10) final long id) {
156
156
----
157
157
+
158
158
** Make a POST request with payload as `1` and show an error is being received
159
-
* Add a new Servlet and the following code in `doGet`
159
+
* Edit `doGet` of `TestServlet to match the code given below
160
160
+
161
161
[source,java]
162
162
----
@@ -171,40 +171,53 @@ for (Student s : result) {
171
171
out.print(s.toString());
172
172
}
173
173
----
174
-
* Access the Servlet in the browser to show the results
174
+
* Access the Servlet in the browser to show the results and explain JAX-RS Client API
175
175
176
176
177
-
* Basic Maven project creation
178
-
** Search for `wildfly-javaee7` archetype - there are 4, which one to choose and when ?
179
-
* CDI
180
-
** Wizards:
177
+
CDI
178
+
---
179
+
180
+
* Wizards:
181
181
http://docs.jboss.org/tools/4.1.x.Final/en/cdi_tools_reference_guide/html/chap-CDI_Tools_Reference_Guide-Creating_a_CDI_Web_Project.html[New CDI Web Project Wizard],
** Navigation (open the bean producer from the @Inject annotation for example):
186
+
* Navigation (open the bean producer from the @Inject annotation for example):
187
187
http://docs.jboss.org/tools/4.1.x.Final/en/cdi_tools_reference_guide/html/chap-CDI_Tools_Reference_Guide-Hyperlink_Navigation.html[Java source navigation], from EL #{} to CDI bean (See JSF)
188
-
** Open CDI Named bean: http://docs.jboss.org/tools/4.1.x.Final/en/cdi_tools_reference_guide/html_single/index.html#d0e597
https://issues.jboss.org/browse/JBIDE-4970, http://docs.jboss.org/tools/whatsnew/jst/jst-news-3.2.0.Beta2.html, Validation and refactoring are also available
201
-
** EL Validation: http://docs.jboss.org/tools/whatsnew/jst/jst-news-3.2.0.M2.html
0 commit comments