This is an automated email from the ASF dual-hosted git repository.

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git


The following commit(s) were added to refs/heads/master by this push:
     new c3b188e  Javadocs
c3b188e is described below

commit c3b188e63991ca5631553d43fd74202060325b3e
Author: JamesBognar <[email protected]>
AuthorDate: Sun Oct 31 10:56:02 2021 -0400

    Javadocs
---
 juneau-doc/docs/Topics/06.juneau-rest-server.html      |  6 +++++-
 .../01.RestHelloWorldExample.html                      |  4 ++--
 .../06.juneau-rest-server/02.RestClassHierarchy.html   | 18 +++++++++++++++++-
 3 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/juneau-doc/docs/Topics/06.juneau-rest-server.html 
b/juneau-doc/docs/Topics/06.juneau-rest-server.html
index ad0c101..6897654 100644
--- a/juneau-doc/docs/Topics/06.juneau-rest-server.html
+++ b/juneau-doc/docs/Topics/06.juneau-rest-server.html
@@ -13,7 +13,7 @@
  
***************************************************************************************************************************/
  -->
 
-{title:'juneau-rest-server'}
+{title:'juneau-rest-server', updated:'9.0.0'}
 
 <h5 class='figure'>Maven Dependency</h5>
 <p class='bpcode w500'>
@@ -62,6 +62,10 @@
 <h5 class='topic'>Features</h5>
 <ul class='spaced-list'>
        <li>
+               Deployable in standard Servlet containers.
+       <li>
+               Deployable in Spring Boot environments with full support for 
injected beans.
+       <li>
                Serializes POJOs to JSON, XML, HTML, URL-Encoding, UON, 
RDF/XML, N-Triple, Turtle, N3, SOAP, or 
                Java-serialized-object based on value of <l>Accept</l> header.  
                <br>No user code is required to handle these types.
diff --git 
a/juneau-doc/docs/Topics/06.juneau-rest-server/01.RestHelloWorldExample.html 
b/juneau-doc/docs/Topics/06.juneau-rest-server/01.RestHelloWorldExample.html
index 59e7646..a175753 100644
--- a/juneau-doc/docs/Topics/06.juneau-rest-server/01.RestHelloWorldExample.html
+++ b/juneau-doc/docs/Topics/06.juneau-rest-server/01.RestHelloWorldExample.html
@@ -13,7 +13,7 @@
  
***************************************************************************************************************************/
  -->
 
-{title:'Hello World Example', flags:'todo'}
+{title:'Hello World Example', updated:'9.0.0'}
 
 <p>
        A REST resource is simply a Java class annotated with {@link 
oajr.annotation.Rest}.
@@ -63,7 +63,7 @@
                        <js>"&lt;/div&gt;"</js>
                }
        )
-       <jk>public class</jk> HelloWorldResource <jk>extends</jk> 
BasicUniversalRest {
+       <jk>public class</jk> HelloWorldResource <jk>extends</jk> 
BasicRestServlet {
        
                <ja>@RestGet</ja>(path=<js>"/*"</js>, summary=<js>"Responds 
with \"Hello world!\""</js>)
                <jk>public</jk> String sayHello() {
diff --git 
a/juneau-doc/docs/Topics/06.juneau-rest-server/02.RestClassHierarchy.html 
b/juneau-doc/docs/Topics/06.juneau-rest-server/02.RestClassHierarchy.html
index 709a210..e30e5d6 100644
--- a/juneau-doc/docs/Topics/06.juneau-rest-server/02.RestClassHierarchy.html
+++ b/juneau-doc/docs/Topics/06.juneau-rest-server/02.RestClassHierarchy.html
@@ -13,7 +13,7 @@
  
***************************************************************************************************************************/
  -->
 
-{title:'Class Hierarchy', updated:'8.1.0', flags:'todo'}
+{title:'Class Hierarchy', updated:'8.1.0,9.0.0',}
 
 <p>
        The class hierarchy for the REST servlet class is shown below:
@@ -34,6 +34,22 @@
                                                        </li>
                                                </ul>
                                        </li>
+                                       <li class='jac'>{@link 
oajr.BasicRestServletJena org.apache.juneau.rest.BasicRestServletJena}
+                                               <br>Same as {@link 
oajr.BasicRestServlet} but adds RDF marshalling support.
+                                       </li>
+                                       <li class='jac'>{@link 
oajr.springboot.SpringRestServlet 
org.apache.juneau.rest.springboot.SpringRestServlet}
+                                               <br>Top-level servlet to use in 
Spring Boot.
+                                               <ul>
+                                                       <li class='jac'>{@link 
oajr.springboot.BasicSpringRestServlet 
org.apache.juneau.rest.springboot.BasicSpringRestServlet}
+                                                               <br>Same as 
{@link BasicRestServlet} except for Spring Boot.
+                                                               <ul>
+                                                                       <li 
class='jac'>{@link oajr.springboot.BasicSpringRestServletGroup 
org.apache.juneau.rest.springboot.BasicSpringRestServletGroup}
+                                                                               
<br>Same as {@link BasicRestServletGroup} except for Spring Boot.
+                                                                       </li>
+                                                               </ul>
+                                                       </li>
+                                               </ul>
+                                       </li>
                                </ul>
                        </li>
                </ul>

Reply via email to