see also http://docs.oracle.com/javaee/5/tutorial/doc/bnbbf.html see also https://jaxb.java.net/tutorial/index.html see also https://jaxb.java.net/guide/index.html – Unofficial JAXB Guide see also How to get simple and better typed binding in https://metro.java.net/guide/ch03.html globalBindings fixedAttributeAsConstantProperty fixed attributes will be generated as a java constant. @XmlSchemaType(name = “NMTOKEN”) public […]
Month: January 2016
JAX-WS RI
See also https://jax-ws.java.net/nonav/2.2.10/docs/index.html. You can view the WSDL file in browser using: http://localhost:8080/helloservice/HelloService?wsdl The below didn’t work for me with jax-ws 2.2.10 ri (java approach). Test the service without a client by typing the following URL in browser: http://localhost:8080/helloservice/HelloService?Tester
XSD schema
https://www.w3.org/TR/xmlschema-2/#built-in-datatypes http://www.xml.com/pub/a/2001/08/22/easyschema.html -> best article That leaves us with with , which ensures that there will not be any data content in the element. -> the default syntax for complex types is complex content that restricts anyType http://stackoverflow.com/questions/5457217/xsd-for-simplecontent-with-attribute-and-text Apparently, you […]
Spring Data REST
The core functionality of Spring Data REST is to export resources for Spring Data repositories. Spring Data REST exposes sub-resources of every item resource for each of the associations the item resource has. By default, Spring Data REST uses HAL […]
Spring HATEOAS
HATEOAS means Hypermedia As The Engine Of Application State ResourceSupport – support class for building DTOs with links ControllerLinkBuilder – allows to create links by pointing to controller classes (Spring MVC controllers or JAX-RS resource classes) With ControllerLinkBuilder you depend […]
Java Memory Model
Volatile doesn’t mean what you think, either