|
|
||
Sahoo's BlogCommunity: Java Enterprise ArchivesUpdated instructions to use OpenJPA in GlassFishPosted by ss141213 on May 12, 2008 at 11:23 AM | Permalink | Comments (0)Layout of OpenJPA installation has changed since I last blogged about using OpenJPA in GlassFish. Let's say one installs OpenJPA in a directory called ${OPENJPA_HOME}. Earlier (I am talking about the days when OpenJPA was still in Apache incubator), all the jars would live under ${OPENJPA_HOME}/lib directory. Now, things have changed. The primary artifact, openjpa-${version}.jar, which contains classes built out of OpenJPA codebase lives under ${OPENJPA_HOME}; where as all the other library jars live under ${OPENJPA_HOME}/lib. So, all you need to do is to copy the appropriate jars like this: cp ${OPENJPA_HOME}/openjpa*.jar ${OPENJPA_HOME}/lib/*.jar ${GLASSFISH_HOME}/domains/domain1/lib and restart GlassFish. For further information, please refer to my earlier blog. I have updated that blog as well. For issues, please don't hesitate to contact us at users (at) glassfish.dev.java.net Bug in Bundle.getResource() in Knopflerfish?Posted by ss141213 on May 01, 2008 at 12:38 AM | Permalink | Comments (4)I was running a simple test on multiple OSGi platforms. I am seeing some difference in behavior when I run it on Knopflerfish #2.0.3. Upon investigation, I observed that Bundle.getResource() implementation on Knopflerfish does not use the parent class loader of the bundle even when I set org.osgi.framework.bootdelegation=*. Here is a simple code that I used to test my theory: public class Activator implements BundleActivator{
The above code prints non-null value for libClazz, but a null value for libResource. If Bundle.loadClass("sahoo.Library") could load the class, how could Bundle.getResource("sahoo/Library.class") return null? It works as expected in other OSGi implementations. To ensure that sahoo.Library.class is available in the parent class loader, I wrote a Main class which creates a ClassLoader that has both the knopflerfish framework.jar and my library.jar in search path. I then use that classloader to launch knopflerfish. Has anyone else faced similar issues? I think this is a serious bug in knopflerfish. I tried to get a confirmation by reporting it in their forum, but no luck. I also tried using the dev forum, but no difference. Is there a better way to ask them questions? I don't know. So I thought I would document what I observed. GlassFish V3 on OSGi - Part IPosted by ss141213 on April 15, 2008 at 07:56 PM | Permalink | Comments (0)I guess by now you have heard the big news coming out of GlassFish community. We have put back initial code that enables GlassFish to run on an *OSGi* R4 platform. Felix is currently our default OSGi runtime. I am assuming you have either read Jerome's blog or Eduardo's posting in The Aquarium. If you have not, I suggest you read them first. Jerome and Eduardo have explained some of the rational behind this change and what to expect in coming days. Now some details not covered there: The following picture tries to give an idea as to how the runtime looks like when GlassFish is running on an OSGi platform:
All our GlassFish modules including the Java EE APIs are packaged as OSGi bundles. Some of you may wonder what's HK2's role here. HK2 has following layers, viz: We have implemented HK2' module layer APIs on OSGi by delegating to OSGi module layer. HK2's component layer and config layer relies on HK2's module APIs. Once those APIs are available, it is not that difficult to make those two layers available as OSGi bundles. Except for cases like URLStreamHandler registration, GlassFish modules do not use OSGi APIs directly; they use HK2 module APIs which are available on both the runtimes. That allows them to run unchanged on both the runtimes. Some other day, I shall talk about the service mapper. Last, but not the least, I want to thank Felix community for the excellent support that they provide in their forum. It's not just the framework that I found easy to use. Their maven-bundle-plugin, which wraps Peter Krien's bnd tool, makes life of maven users so much easier. Now, before you ask me, let me preempt you: Why did we take this approach? What are the benefits of this approach? What are the drawbacks of this approach? Will we continue to support both the modes? How does GlassFish use bundle repository? What other OSGi implementation does it run on? What's next? Getting started with HK2 - Part IIPosted by ss141213 on January 28, 2008 at 12:29 PM | Permalink | Comments (5)This is a sequel to my last blog where I described a Hello World sample running on HK2. As promised there, I am going to expand that sample to show module management, class loading, component injection, instantiation cascading features of HK2 working. Structure of the sample
The modules are organized the same way as our earlier example except that I have added a new module called hello2-impl. The new module holds some implementation details. It is introduced to show how inter-module dependency is managed by HK2. Instructions to build and run remain unchanged. You can run mvn -f hello-world-hk2-sample-2/pom.xml install to build the sample. To run it, do one of the following: Let's go through the contents, first our new module, hello-impl. Step 2: Choose the packages you want to export:
The above syntax is same as what is applicable to maven-jar-plugin. Step 3: Define contract classes Foo.java and Bar.java In HK2, a contract is a Java interface which is annotated with @Contract. Typically a service or a component has two parts, viz: an interface class which defines the public interface of the service and an implementation class. HK2 allows you to develop a contract-less component as well. In HK2, the interface is annotated with @Contract, where as the implementation is annotated with @Service. Step 4:Decide the scope of components Step 5:Define component classes FooImpl.java and BarImpl.java They are both defined in a package called sahoo.hello.impl, which is not exported by our module. Now let's take a closer look at our component classes.
A natural question is when does the injected field bar get initialized? It is initialized by HK2 framework after the constructor call, which means you should not be accessing this field in your default constructor. If you need to specify some business logic as part of construction, then make your component implement PostConstruct interface. Step 6: Write a startup module
It is itself a component, for it is annotated with @Service. What contract does it have? It's ModuleStartup. Since it is a component, it can use dependency injection. See how it is injected with a Foo object and a Habitat object. What is this Habitat object? Well, Habitat is the component manager in HK2. Since, hello-startup module uses interfaces from hello-impl module, we have to set appropriate dependency in hello-startup's pom.xml. When we do this, out hk2-maven-plugin is smart enough to generate the following manifest headers in hello-startup's META-INF/MANIFEST.MF: HK2-Import-Bundles: sahoo:hello2-impl, com.sun.enterprise:hk2 That's it. You are all set to build and run the sample. Observations Q1. Why does HK2 use @Contract and @Service? Q2. What is Habitat in HK2? Conclusion Getting started with HK2 - Part IPosted by ss141213 on January 28, 2008 at 06:30 AM | Permalink | Comments (5)Now that I am working in HK2, I shall share my experiences of HK2 with others via my blogs. I firmly believe that examples are a great way to learn a new technology. So, I will start with a "Hello World" type application. The fact that you are reading this blog makes me think that you already know what HK2 is. Although HK2 is being used in development of ultra light-weight, modular, next generation GlassFish application server, any Java SE programmer can use it to write modular applications. It has a very nice component model with IoC support. In fact, this sample has nothing to do with server side programing. The complete sample along with Maven build scripts, etc. can be downloaded from here. Structure of the sample
As you notice, even though there is only one module, named hello-startup, I have decided to keep a top level pom.xml with packaging type pom and kept hello-startup module in a sub-project. I have done so because I know, in reality, one has multiple modules, so why not get used to that kind of structure from beginning? Prerequisite: How to build (-f option to mvn instructs it to use a specified pom.xml. It is equivalent to cd to hello-world-hk2-sample and invoking 'mvn install') How to run mvn -f hello-world-hk2-sample/hello-startup/pom.xml hk2:run 2. Running a start up script: ./hello-world-hk2-sample/run.sh run.sh is a very simple script that copies all the necessary HK2 jar files from your Maven local repository to a directory called ./lib. It also copies your application jar files to ./lib. Then it launches HK2 using the following command: java -jar ./lib/hk2-0.2-SNAPSHOT.jar Note: There are a couple of variables like JAVA_HOME and MAVEN_REPO_LOCAL in run.sh that you need to configure for your environment. Sample Description: 2. Let's now take a look at our only class, MyStartup.java. Conclusion Useful Links: Introduction to using Java Persistence API in a web application in Java EE environmentPosted by ss141213 on December 04, 2005 at 03:29 PM | Permalink | Comments (27)The Java Persistence API is the standard API for the management of persistence and object/relational mapping in Java EE 5 platform. Every Java EE 5 compatible application server will support this API. In this entry I will show how to use this API from a web application in Java EE environment. What is the example? Requirements Detailed Steps Step #1: Write entity bean UserCredential.java Points to note about this entity bean are: 2) There is no deployment descriptor needed to specify that it is an entity bean. Instead the class has been annotated as @Entity as shown below: @Entity The persistence provider automatically determines whether we are annotating FIELDs or PROPERTIEs. In this case, we have decided to annotate fields. 3) Every entity bean must have an identity. In our case, it is specified using @Id as below: @Id private String name; I have chosen to use @Id because we have a single field primary key. Other annotations like @IdClass, @EmbeddedId are typcally used for composite primary key. 4) Also note that we have not used @GeneratedValue along with @Id. When an id field is not annotated with @GeneratedValue, it means that user is responsible for setting the identity. Provider will not set the id field. 5) Although it is possible to specify exact table name and column names for the entity bean, we can rely on the default mapping that the specification defines. Because of the default mapping rules, UserCredential bean gets mapped to a table called USERCREDENTIAL, name & password fiels get mapped to NAME and PASSWORD columns respectively. Step #2: Define a persistence unit A Persistence Unit (PU) is a logical grouping of a set of related entity beans. A PU also contains configuration details about the entity managers that are going to manage these entity beans. Actually the ocnfiguration is applied to an EntityManagerFactory which in turn creates homogenious entity manager instances. To define a PU we need to write a 1) One persistence.xml can be used to define multiple PUs, but in this case we have defined only one PU by name em1. 2) We need not specify any other elements/attributes, as the default values are just fine for most applications. e.g. by default the entity manager's transaction type is JTA. 3) There is no need to enumerate all the entity bean class names inside Step #3: Write LoginServlet.java Points to note about this servlet are: @PersistenceUnit private EntityManagerFactory emf; Since there is only one Persistence Unit(PU) defined in the scope of the web-app, there is no need to specify the unitName in @PersistenceUnit. Please also note that an injected variable in a servlet or ejb must not be declared static or final. In our example, emf follows this rule as well. 2) Also note that the servlet does not have an instance field of type EntityManager. This is because EntityManager is not thread safe. Since this servlet is not denoted as a SingleThreadModel servlet, one instance of servlet gets shared by mutiple clients and service method of servlet can be called by multiple threads concurrently. So we can't directly inject an EntityManager. Instead we inject an EntityManagerFactory which is thread safe. 3) In the service(), we create an EntityManager using the following code: EntityManager em = emf.createEntityManager(); We also close the EntityManager in the finally block. 4) When user tries to login using a user name and password, it uses to find a matching UserCredential entity in the database. 5) Since EntityManager.find does not require a transaction to be started, the servlet does not have to begin a transaction before calling em.find(). Step #4: Write RegistrationServlet.java Note: 2) It uses EntityManager.persist() to create a new entity in the in the database . 3) Since EntityManager.persist() needs to be called in the context of a transaction, this servlet begins a transaction by calling utx.begin() and commits the tx before returning. 4) Also note that it uses an injected UserTransaction object as follows: @Resource private UserTransaction utx; Unlike EntityManager, UserTransaction is thread safe, so it is OK to inject it into a servlet. 5) Also see how we ensure that when we close the EntityManager there is no active transaction context, otherwise EntityManager.close() will throw an exception. Step #5: Write web.xml We are having to write an web.xml only because we have to define a couple of request path mappings to servlets. Step #6: Write a couple of html files Step #7: Build using build.xml This is a very simple build.xml just to demonstrate the compilation and packaging process. As you can see, to compile only library needed is javaee.jar which contains the Java EE 5 platform APIs. a) build-entities target which compiles only entity beans, copies persistence.xml to output directory and make a jar file called entities.jar. See entities.jar contains persistence.xml in META-INF dir. This jar file is used during compilation of servlets. More over this is also bundled inside the war file's WEB-INF/lib directory. b) build-web-app1 target which compiles the servlets, copies web.xml and html files to output directories amd makes a war file called web-app1.war. A few points worth noting here are: Step #8: Set up a data source By default entity manager uses the default pre-configured data source with JNDI name jdbc/__default that glassfish comes with. This data source talks to a Derby database called sun-appserv-samples. Refer to the README where I have listed the command needed to create the tables in Derby. Glassfish has a feature called Java2DB which can autocreate the database schema during deployment, but because of a bug this feature is not currently supported for Derby. Very soon (in a week or so), this bug is going to be fixed. Watch out glassfish EJB 3.0 persistence project page. Step #9: Run the web-app Hope this entry is useful. In the next entry, we will take a step further and write an enterprise application where a web application talks to database using session beans. Technorati Tags: glassfish persistence | ||
|
|