Skip to content

Commit b751f5c

Browse files
committed
more content
1 parent b9fa7e1 commit b751f5c

File tree

1 file changed

+43
-30
lines changed

1 file changed

+43
-30
lines changed

README.asciidoc

+43-30
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Project creation
99
** Add a new configuration for WildFly
1010
** Add `index.html` in ``WebContent''
1111
** ``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]
1313
1414
Servlet
1515
-------
1616

1717
* Add a new Servlet
1818
** 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
2020
2121
Persistence
2222
-----------
@@ -156,7 +156,7 @@ public void create(@Min(10) final long id) {
156156
----
157157
+
158158
** 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
160160
+
161161
[source,java]
162162
----
@@ -171,40 +171,53 @@ for (Student s : result) {
171171
out.print(s.toString());
172172
}
173173
----
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
175175
176176
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:
181181
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],
182182
http://docs.jboss.org/tools/4.1.x.Final/en/cdi_tools_reference_guide/html/chap-CDI_Tools_Reference_Guide-Wizards_and_Dialogs.html#d0e555[CDI Wizards]
183-
** Content assist: CDI Named Beans are available in JSF EL #{} content assist in XHTML/Java/XML files (See JSF)
184-
** Validation:
183+
* Content assist: CDI Named Beans are available in JSF EL #{} content assist in XHTML/Java/XML files (See JSF)
184+
* Validation:
185185
http://docs.jboss.org/tools/4.1.x.Final/en/cdi_tools_reference_guide/html/chap-CDI_Tools_Reference_Guide-Validation.html
186-
** Navigation (open the bean producer from the @Inject annotation for example):
186+
* Navigation (open the bean producer from the @Inject annotation for example):
187187
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
189-
** Beans.xml editor: Content assist, Navigation, Validation
188+
* Open CDI Named bean: http://docs.jboss.org/tools/4.1.x.Final/en/cdi_tools_reference_guide/html_single/index.html#d0e597
189+
* Beans.xml editor: Content assist, Navigation, Validation
190190
http://docs.jboss.org/tools/whatsnew/cdi/cdi-news-3.2.0.Beta1.html
191-
** Search usage: https://issues.jboss.org/browse/JBIDE-8705[Injection Points], EL #{} (See JSF)
192-
* JSF
193-
** EL content assist in XHTML: http://docs.jboss.org/tools/whatsnew/jst/jst-news-3.3.0.M3.html
194-
** Navigation from/to bean
195-
** Search usage
196-
** Refactoring:
191+
* Search usage: https://issues.jboss.org/browse/JBIDE-8705[Injection Points], EL #{} (See JSF)
192+
193+
JavaServer Faces
194+
----------------
195+
196+
* EL content assist in XHTML: http://docs.jboss.org/tools/whatsnew/jst/jst-news-3.3.0.M3.html
197+
* Navigation from/to bean
198+
* Search usage
199+
* Refactoring:
197200
http://docs.jboss.org/tools/whatsnew/jst/jst-news-3.2.0.M1.html
198-
** New JSF project wizard (JSF 2.2 or older)
199-
** Composite component code assist:
201+
* New JSF project wizard (JSF 2.2 or older)
202+
* Composite component code assist:
200203
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
202-
* Java EE 7 and OpenShift
203-
* Java EE 7 and Forge
204-
** Configure JPA 2.1
205-
** Generate Batch Job XML
206-
** Continuous Delivery
207-
* Misc
208-
** LiveReload:
209-
http://docs.jboss.org/tools/whatsnew/livereload/livereload-news-1.0.0.Alpha2.html
204+
* EL Validation: http://docs.jboss.org/tools/whatsnew/jst/jst-news-3.2.0.M2.html
205+
206+
OpenShift
207+
---------
208+
209+
Forge
210+
-----
211+
212+
* Switch to JBoss perspective
213+
* Go to ``Forge Console'', click on play button to start it
214+
* `project-new --named sample`
215+
* `javaee-setup --javaEEVersion 7`
216+
* `jpa-setup --jpaVersion 2.1`
217+
* Install plugin: `addon-install-from-git --url https://github.com/forge/addon-batch`
218+
** Create new Job XML: `batch-new-jobxml --jobXML myJob.xml --reader org.svcc.MyReader --writer org.svcc.MyWriter`
219+
220+
Continuous Delivery
221+
-------------------
222+
210223

0 commit comments

Comments
 (0)