I have experienced both for testing JMS Queues and didn’t find anything working well. Hermes has got complicated configuration and doesn’t work well with JMS an QBrowser is slow… any idea?
Month: September 2010
-
GWT EJB3 Maven Glassfish 2.1.1 integration tutorial
I am just being inspired by GWT EJB3 Maven JBoss 5.1 integration tutorial that is why I decided to write my own tuts just for remember howto. I am working with Glassfish and my IDE is Netbeans the demo db will be derby. I know it really doesn’t matter what app server we deploy to but still… something different. Article comming soon… Good to start with Screencast “Creating a Maven based Java Enterprise Application with GWT”
-
myBatis mapping example from docs within oracle procedure
1. I just want to show how to setup complete batis project. I’ll be using example from docs. As you can read there you need at least 4 files at least:
- Configuration.xml
- BlogMapper.xml
- BlogBean.java (session bean)
- Blog.java (domain class)
So then you have ready and working object-relational mapping you can easily publish as web service by adding annotation @webservice.
Configuration.xml (more…)
-
Dominator my approach solution
All methods are static but it obvious why, just for example. There is also one method called getHashMap which takes a piece of work and on given array returns hashmap with elemnts and its count number. (more…)
-

bpel + ETL + scheduler + db log
Simple idea of how to use openESB and scheduled invocation of ETL process and store log data in database. Best ETL method is “Stagging” that uses “stagging table”. It simply transfers a bunch of rows from one db to another firstly to the middle buffer table and then to the target one. No delays, no empty tables, and data always fresh and ready for processing :)