Results 1 to 1 of 1
Thread: Struts Form Bean with property
-
Struts Form Bean with property
Following Strut bean contains a property named number.
Java Code:import org.apache.struts.action.*; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class LogicForm extends ActionForm { private long number; public long getNumber() { return number; } public void setNumber(long number) { this.number=number; } }
Similar Threads
-
How to set the property of Bean by constructor injection
By Java Tip in forum Spring FrameworkReplies: 1Last Post: 05-05-2008, 09:01 AM -
property of a java bean
By suloverboy in forum New To JavaReplies: 3Last Post: 12-14-2007, 09:31 PM -
Cannot pass the correct property value to a form
By piterskiy74 in forum Web FrameworksReplies: 0Last Post: 12-11-2007, 03:17 PM -
How to set the property of Bean by constructor injection
By JavaBean in forum Java TipReplies: 0Last Post: 10-04-2007, 09:18 PM -
Struts tag error with bean:write
By sandor in forum Web FrameworksReplies: 1Last Post: 04-07-2007, 04:50 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks