Re: Design Question

2009-01-07 Thread Musachy Barroso
Plugins are not that different than putting all those mappings, classes, etc in the webapp. The limitations would be the same as the S2 limitations (in theory at least). musachy On Tue, Jan 6, 2009 at 7:24 PM, Dan Daly wrote: > Hello, > > I am working on an application that needs different sets

Re: Design Question

2009-01-06 Thread Wes Wannemacher
Perhaps take a look at the OSGi plugin as well... It's in beta, but provides functionality such as deploying bundles of actions during runtime. http://cwiki.apache.org/S2PLUGINS/osgi-plugin.html -Wes On Tue, 2009-01-06 at 16:24 -0800, Dan Daly wrote: > Hello, > > I am working on an applicatio

Re: [OT] Re: design question

2006-01-31 Thread fea jabi
thankyou, for all your valuable responces. From: Dave Newton <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: [OT] Re: design question Date: Tue, 31 Jan 2006 10:13:24 -0500 fea jabi wrote: > you have mentioned that &

Re: [OT] Re: design question

2006-01-31 Thread Dave Newton
fea jabi wrote: > you have mentioned that > > "You're going to have an object in memory no matter what" > > If we are using Resultset how/when is the Object getting created? I > was under the impression that it will get the data directly from the DB. Uh... a ResultSet is an object. >> You're going

Re: [OT] Re: design question

2006-01-31 Thread fea jabi
somewhere that if this approach is used then we'll be breaking the MVC architecture. any reference links for this? Thanks. From: Dave Newton <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: [OT] Re: design question D

RE: design question

2006-01-31 Thread Myatluk Andrey
ecords from a db and display them using displaytag: --- cut --- -Original Message- From: fea jabi [mailto:[EMAIL PROTECTED] Sent: Monday, January 30, 2006 7:29 PM To: user@struts.apache.org Subject: RE: design question can anyone help me understand this? Thanks. >From: "fea

Re: [OT] Re: design question

2006-01-30 Thread Dave Newton
fea jabi wrote: > But as I mentioned earliar I am creating an object which I am planning > to instanciate for each row of data. When I told about this to my team > they were concerned about the objects being in memory and advised to > use the resultset directly. In the sessionbean probably we can c

RE: [OT] Re: design question

2006-01-30 Thread fea jabi
t; Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: [OT] Re: design question Date: Mon, 30 Jan 2006 11:42:10 -0500 fea jabi wrote: > can anyone help me understand this? Don't know. >> I am creating instances of this Object and making a List which

RE: [OT] Re: design question

2006-01-30 Thread George.Dinwiddie
Dave Newton replied: > In general, I have pretty strong feelings against using "raw" > ResultSets despite the overhead of copying data... anything > other than raw JDBC will see the same behavior whether it's a > full ORM or something as simple as a RowSetDynaClass (from > Jakarta BeanUtils).

[OT] Re: design question

2006-01-30 Thread Dave Newton
fea jabi wrote: > can anyone help me understand this? Don't know. >> I am creating instances of this Object and making a List which is >> getting displayed in the JSP. >> >> I was told that instead of creating Object and creating instances, >> one can directly use the result set got from the DB an

RE: design question

2006-01-30 Thread fea jabi
can anyone help me understand this? Thanks. From: "fea jabi" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: user@struts.apache.org Subject: design question Date: Fri, 27 Jan 2006 11:40:20 -0500 For all the tables in the JSP, I am using displaytag. For each row in the table I

Re: design question --- struts & displaytag

2005-12-01 Thread fea jabi
thankyou for your responses. From: Dave Newton <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: design question --- struts & displaytag Date: Thu, 01 Dec 2005 09:44:38 -0500 fea jabi wrote: can someone help me with

Re: design question --- struts & displaytag

2005-12-01 Thread Dave Newton
fea jabi wrote: can someone help me with this please? What are you doing this for? In other words, is this for your job, school work, etc.? For displaytag questions you'll want to look at the displaytag docs or utilize their mailing list. Dave -

Re: design question --- struts & displaytag

2005-12-01 Thread Matt Morton
You will place the name of the properties asscoiated with hrs bean, So if it has a property called name then place "name" in there. You can also break open the tag a bit and use the follwing syntax ${hrs.name} Then you can manipulate the value like you want. This is off the top of my head so do

RE: design question --- struts & displaytag

2005-12-01 Thread fea jabi
can someone help me with this please? Thanks. From: "fea jabi" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: user@struts.apache.org Subject: design question --- struts & displaytag Date: Wed, 30 Nov 2005 16:02:26 -0500 Have a table as below -- will be using displaytag for thi

Re: Design question

2005-07-22 Thread Ed Griebel
Hi Daniel- The idea of a "smart bean" which knows how to render itself is a pretty cool idea, and it's a clean idea conceptually. But, I think the Struts framework and struts jsp tags removes a lot of the hassle because of what it gives you out of the box. I've been faced with the same situation,

Re: Design question

2005-07-22 Thread BHansard
. But it is likely you would want to do that anyway to insure the look and feel of each page. Daniel Łaś <[EMAIL PROTECTED]> Daniel Łaś <[EMAIL PROTECTED]> 07/22/2005 10:07 AM Please respond to "Struts Users Mailing List" To Struts Users Mailing List cc

Re: Design question

2005-07-22 Thread Daniel Łaś
Well, I thing about something else. If UserView bean can generate HTML form fields dependig on User attributes, one for adding, another one for editing I could only change my User bean (model) and my view layer will work without change. I think that it is possible to write action that will wor

Re: Design question

2005-07-22 Thread BHansard
I think you are re-inventing something here. To do what you are wanting is already in struts to some degree. you have your User Bean, You define an formbean which either contains UserBean or contains fields that match UserBean on your jsp page you create something like This

Re: Design question

2005-03-30 Thread Rajesh Thiharie
1. In a single form you would have the button as a parameter. This is better because you will need to develop a single Action and write a switch-case for the buttons (parameter(s) per tab). 2. For separate actions you would not need to bother with parameters because each button is mapped to a s

Re: Design Question - Struts for Generic Applications

2004-04-22 Thread Joe Germuska
It might be worth having a look at the struts-bsf library at http://struts.sourceforge.net/ It would allow rapid development using scripting languages to write actions while still providing a more future-proof "interface" between your view and your controller. That is, the JSPs wouldn't have t

RE: Design Question

2004-04-05 Thread Erez Efrati
8:42 AM To: Struts Users Mailing List Subject: Re: Design Question Erez Efrati wrote: >Hi, > >I am developing an EJB/Struts J2EE application. >Up to now I have dealt with the design of the customer web application >side >and I came to the admin area - the back office we

Re: Design Question

2004-04-04 Thread Craig R. McClanahan
Erez Efrati wrote: Hi, I am developing an EJB/Struts J2EE application. Up to now I have dealt with the design of the customer web application side and I came to the admin area - the back office web application part. I should also point out that I am using the securityFilter filter for authent

RE: Design Question

2004-04-02 Thread Erez Efrati
alf Of Bill Siggelkow Sent: Friday, April 02, 2004 7:33 AM To: [EMAIL PROTECTED] Subject: Re: Design Question Erez, it depends a lot on the use cases. If the admin integration to the customer app is all at the back-end (database) then I think you should try the separate web app approach. The

Re: Design Question

2004-04-01 Thread Bill Siggelkow
Erez, it depends a lot on the use cases. If the admin integration to the customer app is all at the back-end (database) then I think you should try the separate web app approach. The separate web app will most easily address the security issues. If however, the admin app will be using substa