Repository: incubator-juneau-website Updated Branches: refs/heads/asf-site 022b0180c -> 2894e71c5
Minor updates. Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/commit/2894e71c Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/tree/2894e71c Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/diff/2894e71c Branch: refs/heads/asf-site Commit: 2894e71c5aa9dc2d06c9ede795a7de851dd64d2b Parents: 022b018 Author: JamesBognar <[email protected]> Authored: Mon Apr 17 09:10:19 2017 -0400 Committer: JamesBognar <[email protected]> Committed: Mon Apr 17 09:10:19 2017 -0400 ---------------------------------------------------------------------- content/about.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/2894e71c/content/about.html ---------------------------------------------------------------------- diff --git a/content/about.html b/content/about.html index 6c62857..dd86a05 100644 --- a/content/about.html +++ b/content/about.html @@ -202,17 +202,10 @@ ObjectList l9b = (ObjectList)parser.parse(json, Object.<jk>class</jk>); <jc>// Equivalent.</jc> </p> <p> - Many POJOs such as primitives, beans, collections, arrays, and classes with various known constructors and methods are serializable out-of-the-box. - For other objects, "swaps" allow you to swap-in serializable replacement objects during serialization - and vis-versa during parsing. Beans can also be tailored in various ways such as customizing property names, ordering, and visibility. - </p> - <p> - See <a class='doclink' href='http://juneau.incubator.apache.org/site/apidocs/overview-summary.html#Core.PojoCategories'>POJO Categories</a> for a definition of supported POJOs. - </p> - <p> Serializers can send output directly to Writers, OutputStreams, Files, Strings, or byte arrays. <br>Parsers can receive input directly from Readers, InputStreams, Files, Strings, or byte arrays. </p> + <br><br><hr> <p> Serializers and parsers are builder-based. Build from scratch or clone existing instances. Lots of configuration options available for all the languages. </p> @@ -244,7 +237,12 @@ .build(); </p> <p> - Built-in support is provided for handling special-case POJOs: + See <a class='doclink' href='http://juneau.incubator.apache.org/site/apidocs/overview-summary.html#Core.PojoCategories'>POJO Categories</a> for a definition of supported POJOs. + </p> + <p> + Many POJOs such as primitives, beans, collections, arrays, and classes with various known constructors and methods are serializable out-of-the-box. + For other objects, "swaps" allow you to swap-in serializable replacement objects during serialization + and vis-versa during parsing. Beans can also be tailored in various ways such as customizing property names, ordering, and visibility. </p> <ul class='spaced-list'> <li>Transforms @@ -262,6 +260,7 @@ <br><code>valueOf(String)</code>, <code>parse(String)</code>, <code>parseString(String)</code>, <code>forName(String)</code>, <code>forString(String)</code>, <code>fromString(String)</code>, <code>T(String)</code>, <code>Object swap(BeanSession)</code>, <code>T unswap(BeanSession, T.class)</code> </ul> + <br><br><hr> <p> UON (URL-Encoded Object Notation) allows JSON-like data structures (OBJECT, ARRAY, NUMBER, BOOLEAN, STRING, NULL) in HTTP constructs (query parameters, form parameters, headers, URL parts) without violating RFC2396. @@ -288,6 +287,7 @@ ) ) </p> + <br><br><hr> <p> Lots of shortcuts are provided throughout the API to simplify tasks, and the APIs are often useful for debugging and logging purposes as well... </p> @@ -1085,7 +1085,7 @@ REST microservices can also be started programmatically in existing code: </p> <p class='bcode'> - RestMicroservice myRestService = <jk>new</jk> RestMicroservice().setConfig(<js>"my-config.cfg"</js>, <jk>false</jk>); + RestMicroservice myRestService = <jk>new</jk> RestMicroservice().setConfig(<js>"microservice.cfg"</js>, <jk>false</jk>); myRestService.start(); URI uri = myRestService.getURI(); </p>
