|
Hibernate example source code file (additionalmodules.po)
The Hibernate additionalmodules.po source code# Language de-DE translations for PACKAGE package. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2010-07-20 21:02+0000\n" "PO-Revision-Date: 2010-07-20 21:02+0000\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Tag: title #: additionalmodules.xml:28 #, no-c-format msgid "Additional modules" msgstr "" #. Tag: para #: additionalmodules.xml:30 #, no-c-format msgid "" "Hibernate Core also offers integration with some external modules/projects. " "This includes Hibernate Validator the reference implementation of Bean " "Validation (JSR 303) and Hibernate Search." msgstr "" #. Tag: title #: additionalmodules.xml:35 #, no-c-format msgid "Bean Validation" msgstr "" #. Tag: para #: additionalmodules.xml:37 #, no-c-format msgid "" "Bean Validation standardizes how to define and declare domain model level " "constraints. You can, for example, express that a property should never be " "null, that the account balance should be strictly positive, etc. These " "domain model constraints are declared in the bean itself by annotating its " "properties. Bean Validation can then read them and check for constraint " "violations. The validation mechanism can be executed in different layers in " "your application without having to duplicate any of these rules " "(presentation layer, data access layer). Following the DRY principle, Bean " "Validation and its reference implementation Hibernate Validator has been " "designed for that purpose." msgstr "" #. Tag: para #: additionalmodules.xml:48 #, no-c-format msgid "" "The integration between Hibernate and Bean Validation works at two levels. " "First, it is able to check in-memory instances of a class for constraint " "violations. Second, it can apply the constraints to the Hibernate metamodel " "and incorporate them into the generated database schema." msgstr "" #. Tag: para #: additionalmodules.xml:54 #, no-c-format msgid "" "Each constraint annotation is associated to a validator implementation " "responsible for checking the constraint on the entity instance. A validator " "can also (optionally) apply the constraint to the Hibernate metamodel, " "allowing Hibernate to generate DDL that expresses the constraint. With the " "appropriate event listener, you can execute the checking operation on " "inserts, updates and deletes done by Hibernate." msgstr "" #. Tag: para #: additionalmodules.xml:62 #, no-c-format msgid "" "When checking instances at runtime, Hibernate Validator returns information " "about constraint violations in a set of <classname>ConstraintViolationConstraintViolation." msgstr "" #. Tag: title #: additionalmodules.xml:71 #, no-c-format msgid "Adding Bean Validation" msgstr "" #. Tag: para #: additionalmodules.xml:73 #, no-c-format msgid "" "To enable Hibernate's Bean Validation integration, simply add a Bean " "Validation provider (preferably Hibernate Validation 4) on your classpath." msgstr "" #. Tag: title #: additionalmodules.xml:79 #, no-c-format msgid "Configuration" msgstr "" #. Tag: para #: additionalmodules.xml:81 #, no-c-format msgid "By default, no configuration is necessary." msgstr "" #. Tag: para #: additionalmodules.xml:83 #, no-c-format msgid "" "The <classname>Default group is validated on entity insert and " "update and the database model is updated accordingly based on the " "<classname>Default group as well." msgstr "" #. Tag: para #: additionalmodules.xml:87 #, no-c-format msgid "" "You can customize the Bean Validation integration by setting the validation " "mode. Use the <literal>javax.persistence.validation.mode property " "and set it up for example in your <filename>persistence.xml file " "or your <filename>hibernate.cfg.xml file. Several options are " "possible:" msgstr "" #. Tag: para #: additionalmodules.xml:96 #, no-c-format msgid "" "<literal>auto (default): enable integration between Bean " "Validation and Hibernate (callback and ddl generation) only if Bean " "Validation is present in the classpath." msgstr "" #. Tag: para #: additionalmodules.xml:102 #, no-c-format msgid "" "<literal>none: disable all integration between Bean Validation and " "Hibernate" msgstr "" #. Tag: para #: additionalmodules.xml:107 #, no-c-format msgid "" "<literal>callback: only validate entities when they are either " "inserted, updated or deleted. An exception is raised if no Bean Validation " "provider is present in the classpath." msgstr "" #. Tag: para #: additionalmodules.xml:113 #, no-c-format msgid "" "<literal>ddl: only apply constraints to the database schema when " "generated by Hibernate. An exception is raised if no Bean Validation " "provider is present in the classpath. This value is not defined by the Java " "Persistence spec and is specific to Hibernate." msgstr "" #. Tag: para #: additionalmodules.xml:122 #, no-c-format msgid "" "You can use both <literal>callback and Other Hibernate examples (source code examples)Here is a short list of links related to this Hibernate additionalmodules.po source code file: |
... this post is sponsored by my books ... | |
![]() #1 New Release! |
![]() FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.