JavaOne and Oracle Develop 2010
July 15, 2010 by Frank Salinas · Leave a Comment
Tomorrow is the last day for early-bird registration discounts.
JavaOne and Oracle Develop 2010
Poll: Which MVC Framework Do You Use?
April 30, 2010 by Frank Salinas · 2 Comments
At work we’re looking into swapping out Struts with a different MVC framework. I’m curious as to which frameworks are most in use today. Please complete the poll below and feel free to post comments/recommendations on the subject. Share the link and spread the word, the more data received the better!
Read more
Java Web Services: Getting Started
March 9, 2010 by Frank Salinas · Leave a Comment
When it came time for me to tackle my first web service implementation I ran into a lot of problems. Here I will write a series of articles to address the questions and problems I encountered in hopes of helping you get started in developing web services faster than I did. The following example will show you how to create a web service using JAX-WS and packaged as a servlet. Read more
The EJB Specification, Concurrency, and Batch Processing
March 1, 2009 by Frank Salinas · 1 Comment
The EJB specification does not leave much room for implementing concurrent processing within the EJB container. This poses a problem to developers who need to implement solutions for processing long running batch processes as part of the business logic of an application. The EJB specification states the following:
The enterprise bean must not attempt to manage threads. The enterprise bean must not attempt to start, stop, suspend, or resume a thread, or to change a thread’s priority or name. The enterprise bean must not attempt to manage thread groups.
These functions are reserved for the EJB container. Allowing the enterprise bean to manage threads would decrease the container’s ability to properly manage the runtime environment.