Re: How do I init a Form bean via business logic?

2002-02-20 Thread kothapallibc
Hi, How nice! I've been mulling over this for the last few days and here is a chance to discuss it! Let me try to summarize--- Option1(Struts model):- Controller updates model, retrieves the updated data and sets it in Request/Session(which JSPs use to generate the HTML). Controllers manage(

My problems with Struts...

2002-02-20 Thread kothapallibc
Hi, I'm a newbie to Struts and trying to fit it into an application that's modeled after Blueprints. I feel frustrated at many places...It could be just that I don't understand Struts properly yet.I feel like just using the classes that I like and leaving those features I don't prefer. I agr

Can nested beans be arrays in Struts1.0?

2002-02-08 Thread kothapallibc
Hi all, I'm a newbie to Struts. I'm trying with 1.0 release. My FormBean is follows... public class MonkeyForm extends ActionForm { private Monkey[] monkey = new Monkey[5]; public Monkey[] getMonkey() { return this.monkey; } public void setMonkey(Monkey monkey[]) {this