Bob Watson

Greenhorn
+ Follow
since Dec 04, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Bob Watson

Hello everyone,
In Jakarta struts API ActionForm, there is a sentence -- "Because ActionForms are JavaBeans, subclasses should also implement Serializable, as required by the JavaBean specification."
If I create my own super Form like this:
public abstract class MyGeneralActionForm extends ActionForm { ... }
it will still work. My question is -- do we have to implement Serializable?
Thanks a lot!
19 years ago
Hello everyone,
If I use a form bean and <html:text property="someName" />, then Struts will put whatever the form bean's "someName" is into <html type="text" value="blah">, where blah is the value of form bean variable "someName". A Reset button won't be able to clear up the default value attribute. How can we write the JSP custom tag to have Reset clear?
Thanks in advance.
19 years ago
Hello guys,
Can I have something in Java, say set up a time to trigger a program? I'm running a Web program. Can we do that in a Servlet? Thanks in advance.
19 years ago
Just what I've seen.
1. In security perspective, if you use PL/SQL, then your business logic won't be transferred over your network.
2. On the other hand, from J2EE structure point of view, each Java bean should match one table and we implement all the functionalities associated with that table inside this Java Bean. If you want to use PL/SQL, you are more flexible in reducing Java bean usage.
In the real industry, both are popular.
19 years ago