-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hey all,
I'm currently writing a simple JSF 2 app for WAS 7. When I define the bean via the faces-config.xml, everything works great
<managed-bean>
<managed-bean-name>personBean</managed-bean-name>
<managed-bean-class>com.prototype.beans.PersonBean</managed-bean-class>
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
The scenario is as below (tables shown)
Delivery table
------
id channelId type
10 100 fax
20 200 email
Fax table
----
id number
100 1234567
101 1234598
Email table
-----
id email
200 [email protected]
201 [email protected]
basically a one to one relationship between the delivery and…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have 2 ejbs. Ejb-A that calls Ejb-B. They are not in the same Ear.
For portability Ejb-B may or may not exist on the same server. (There is an external property file that has the provider URLs of Ejb-B. I have no control over this.)
Example Code: in Ejb-A
EjbBDelegate delegateB = EjbBDelegateHelper…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Timer Tasks in Java EE are not very comfortable. Is there any util, to configure timer with cron syntax like "0 20 20 * * "?
I wonder, if it would be a good way to use Quartzinside (clustered) JEE application. According to http://www.prozesse-und-systeme.de/serverClustering.html (german page) there…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I want to ask for your prefered way to test JEE code?
I found only three project, that are trying to help to code unit tests in JEE environment:
http://jakarta.apache.org/cactus/ : Last Published: 2009-01-18
http://www.junitee.org/ : Last Release: 2004-12-11
http://ejb3unit.sourceforge.net/ : Last…
>>> More