-
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 have a component done in JSF 1.x, this component has a command button as follows
<h:commandButton ... action="#{templateController.next}" />
Where templateController was passed as an EL binding and can be any object that implements a certain interface. The generic implementation of next()…
>>> More