WAS v8.5 > Reference > Command-line utilities

wsenhancer command

The entity enhancer tool for Java Persistence API (JPA) applications inserts bytecode into an entity class file that supports the JPA provider to manage the state of an entity.

JPA with the application server requires that all entity classes be enhanced to manage their state. In a container-managed environment, automated enhancement is provided by the containers. In a Java SE environment, though, there are no containers to manage persistence and you might use this command frequently before packaging application files for testing. After we have created the JPA entities, we can run the wsenhancer tool to inject bytecode into the entities before packaging the JAR file into the EAR file for the application.


Syntax

Before running the command, you must have a copy of the persistence.xml file on the classpath, or specify it as a properties file in the -p [path_to_persistence.xml] argument. Issue the command from the bin subdirectory of the profile_root directory.

The command syntax is as follows:


Parameters

The enhancer accepts the standard set of command-line arguments defined by the configuration framework along with the following:

If we do not provide arguments to the enhancer, it runs on the classes in your persistent class list.


Usage

To use the wsenhancer tool you need entities defined to the JPA specifications, and the entities must be compiled. Run the wsenhancer tool against the entities before packaging them into a JAR file. If the entities are already packaged, you extract the entity class files, run the enhancer, and recreate the JAR file.

To enhance your entities:

Messages and errors are logged to the dmgr console as specified in the log settings. After starting the wsenhancer command, your files are enhanced.


Examples

To enhance all entities on the class path:

$ cd build
/home/user/myproject/build $ ${profile_root}/bin/wsenhancer.sh
C:\myproject\cd build
C:\myproject\build>%profile_root%\bin\wsenhancer.bat 

All entities in myproject are enhanced.

To enhance a specific entity when we have the source files:

$ cd build
/home/user/myproject/build $ ${profile_root}/bin/wsenhancer.sh Magazine.java
C:\myproject\cd build
C:\myproject\build>%profile_root%\bin\wsenhancer.bat Magazine.java

To enhance a specific entity when we have the compiled class files:

$ export CLASSPATH=target/classes
$ ${profile_root}/bin/wsenhancer.sh /bin/wsenhancer.sh target/classes/jpa/example/MyEntity.class
C:> cd build
C:\build> SET CLASSPATH=target\classes
C:\build>%profile_root%\bin\wsenhancer.bat \bin\wsenhancer.bat target\classes\jpa\example\Magazine.class

The entity, Magazine.java, located in project are enhanced.


Additional information

For more information about enhancement tools, see the section on persistent classes in the Apache OpenJPA documentation.


Related


Develop JPA 2.x applications for a Java EE environment
Develop JPA 2.x applications for a Java SE environment


Reference:

Apache OpenJPA User's Guide


+

Search Tips   |   Advanced Search