Schema Value Object

zhaozj2021-02-11  193

Schema Value Object Author Olivier Brand (Obrand @

yahoo.com) 08/23/2001 Context Value Objects must include validation code in order to optimize network traffic and XML features for B2B exchanges. Problems While implementing a three tier application using J2EE Core Patterns, a usual design will involve at least some Value Objects, some Session Facades, a few Entity Beans and Data Access Objects for the underlying persistence logic. A Value Object is the representation of a business data. Therefore it contains attributes and associated business methods. A Value Object can be initialized by the Enterprise Java Bean layer (in the case of reads) or by the Client (in the case of creations or updates). Usually the Value Object does not need to be validated when being created in the Enterprise layer since we assume that the data has already been constrained By The Persistent Store. A Problem Occurs When Creating Or Updating The Value Objects in The Client Layer. for Instance An Attribute Representing The Email Addres s of a customer in the Value Object can be tied to a specific column in a database with additional constraints such as the length of the column and its format following a specific pattern (regular expression driven,.

..). Now the developer needs to make a decision where to add the validation code on this field. The most common solution is to rely on the underlying datastore which will reject the insert or update if a field does not conform to a specific constraint . The problem of relying on the datastore to check the data constraints is expensive in term of network overhead. Another problem is that the implementation is more complex since the eventual thrown exceptions need to traverse multiple layers and be interpreted by the client layer. B2B data Exchange Must Be Realized Through The Http Protocol To overcome FireWall Restrictions. Standards Such as soap, ebxml ,.

.. are already defined. Multiple implementations of these standards allow to wrap Enterprise Beans in a Web Service. Since the Enterprise Bean layer plays the role of a Value Object Factory, the reulting data needs to be transformed at one point as XML to be encapsulated into SOAP or eBxml packets. Forces The validation of a Value Object is done early on, avoiding Network overheads (similar to the role of Javascript for form validation in web applications) Simplify the three tier layer in term of exception handling Can rely on W3C specifications such as XML Schemas (or DTDs) for documenting and generating (see solution) data constraints. XML aware Value Objects can be easily included in B2B exchanges Solution Use an existing XML framework to express data constraints and automate the process to unmarshal XML documents to Java Objects and to Marshal Documents. There Are Many XML Frameworks Available. Some Are Relying On DTDS, Others Are Relyin g on the newest XML Schema (aka XSD) specifications. I chose to rely on the XML Schema specification in order to express the Value Object constraints.XML Schemas are defined in XML (as opposed to DTDs), therefore can be created using any XML Aware Tools, Documentation Can Also Be generated using xsl transforms (output html, ....). XML Schemas Are "Object Oriented Friendly"

since they allow for complex types creation and extension. The framework of choice used for implementing this pattern is Castor from Exolab. This framework is on its way to support the final W3C specification, but it showed in any projects that its Schema support is enough for implementing this pattern. This framework is also Open Source. The main idea is to write an XML schema corresponding to the structure of the final Value Object (in term of attributes and types), and add the constraints as defined in the database (length, format, .....). Some constraints such as uniqueness can not be expressed, but typically, you want the underlying database to reject the record if such constraint is violated. Then you can use the Castor source generator class to generate the Java classes associated with the XSD Schema. Each complex type is sually defined as a class. Each element, attributes are defined as properties (class variable) and corresponding setter / getter methods are automatically generat ed. Relying on a source generator prevents coding complex validation rules in a language that can not be understand by non Java developers. For instance a Database modeler and an Architect (or Senior Developer) can be involved early on in order to define those schemas. This will be the starting point for the DDL and the Schema Value Objects generations. This is a nice approach to bring 2 different teams together on a design and implementation phases. Then the Schema Value Objects need to be created. At this stage there are 2 possible Choices:

.. The Schema Value Object extends the generated Java class from the XSD schema The Schema Value Object encapsulates (wraps) the generated Java class from the XSD schema I prefer the second solution for 2 reasons: The Castor framework (or any other Schema aware framework generators) defines new types which correspond to the richer XSD Schema definition (compared to Java types). Therefore, you might want to hide these "proprietary" classes allowing later on (if needed) to replace the Java Schema generator with another one (for instance, when Javasoft will provide a Schema module for its JAXB framework). You might want to validate field by field (when each setter is being called) and add some dirty flag support in the same methods. Wrapping the generated setters with your own setters Make thr in the java classes from the xsd schema using castor, Special Classes Called Descriptors Are Created. Thase Classes Are Handling The Validation part (the constraints defined in the XML Schema are showing in this classes). Do we want to validate field by field or the entire document? Once again this is an implementationd ecision mostly driven by the client '

s implementation. In my implementations, we decided to validate field by field (the validation is done in each setters). To perform a field level validation, the Castor XML API offers a class to perform validation at the field level (as opposed as the entire document):. FieldValidator I highly encourage you to look at castor.exolab.org in order to get familiar with the possibility of the product The second part of the pattern is trivial since any Schema (or DTDs) aware code generator, Castor. Included, Include Marshaling and UNMARSHALING FACILITIES. THESE METHODS Allow to Transform Java TO XML AND XML TO JAVA. CASTOR OFFERS 2 CLASSES TO Perform Such Transformations:

Marshaller and Unmarshaller. The Marshaller class can transform a Java object to XML. Some methods allow to marshal the object directly in a W3X DOM Node object. This method is highly optimized when dealing with SOAP where you want to include a fragment (therefore the generated Node) in a SOAP enveloppe. This method is also preffered when dealing with XSL (in frameworks like Apache Cocoon, ....) since the DOM tree is already built. This method also works with the W3C SAX API. The Unmarshaller class can transform any XML sources to the Castor generated Java object. One of my projects included this pattern and was successfully implemented using the Apache SOAP framework with a WSDL extension we had to write. WSDL is an XML document containing the definition of the operations exposed as web Services. Any Complex Types Are Referred To An The Reason Why This Pattern Perfectly Applies To B2B Exchanges BY BRINGINGINGETHER. Consequences Takes advantage of the Value Object pattern Therefore it reduces network traffic. Uses W3C standards to express data constraints Schemas or DTDs can be understood by non java developper and is the common ground for B2B exchanges (see WSDL, SOAP, UDDI, ...) Allows for automated code generation Once the XSD Schema written, a Java Binding framework like Castor, can be used to generate the Java classes. Includes an XML framework to serialize / deserialize Java object to and from XML. This fits perfectly in the Web Services world .. ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

//Developer.java.sun.com/developer/restricted/patterns gof pattern: http://www.hillside.net/patterns/dpbook/dpbook.html castor XML: http://castor.exolab.org 2 replies in This Thread ReplySchema Value Object

Posted By: Olivier Brand on August 25, 2001 in response to this message This pattern could (and should) be renamed:. Schema Data Object This approach applies to a lot of scenarios and schemas are a good complement to add constraints to languages.. The value Object Could Be One Implementation of this Pattern. 0 Replies in this thread reply

Schema Value Object - Options

Posted By:. Earl Bingham on August 31, 2001 in response to this message At sourceforge.net there is a project called jvalid that was started last year that does validation with XML Schemas http://sourceforge.net/projects/jvalid/. Also, there is a XSLT Stylesheet called Schematron that is designed to allow validation of XML Documents to be done with a definition of the validation in XML. http://www.ascc.net/xml/resource/schematron/schematron.html I .

转载请注明原文地址:https://www.9cbs.com/read-5291.html

New Post(0)