You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Nick Afshartous <ni...@proactcorp.com> on 2001/03/15 17:19:57 UTC

Success with Struts

We've only got a few replies so far.  Surely there must be
other interesting projects using Struts ?  Please let us know, thanks.
-- 

	Nick


 > Kyle Robinson writes:
 >  > Does anyone have any stories of great success with Struts?  I'm trying to
 >  > convince management that Struts is a good thing and applications can be
 >  > developed efficiently and solidly with it. If so please email me directly as
 >  > I think this may be slightly off-topic.

Nick Afshartous writes:
 > I don't think its off-topic.  As a matter of fact I'm also trying
 > to sell my management and would also like to here about success
 > stories.  If people could post to the list I'd be happy to
 > collect the responses for inclusion in the Struts site.  
 > 
 > Suggested format for responses:
 > 
 >   Company name,  URL of site using Struts
 > 
 >   Contact person (optional)
 > 
 >   Description of application using Struts
 > 
 >   Number of users plus any performance metrics
 > 
 >   Server environment:  Describe Web/App server being used, and
 >                        database config (DataSource ?).
 >                


Re: Success with Struts

Posted by Mark Balster <ma...@hotmail.com>.
Nick,

I have been using Struts to develop our companies bread and butter
application on the web.  Personally, I have found the product extremely
sound and well thought out from a design perspective.

The biggest plus is that it is standards based.  We currently run Tomcat
3.2.1 but that is only for convience.  We have talked about having an
outside service host the application therefore standards based is a big plus
for us.

I hope this helps you.

Mark Balster
CIO
Expressdata

----- Original Message -----
From: "Nick Afshartous" <ni...@proactcorp.com>
To: <st...@jakarta.apache.org>
Sent: Thursday, March 15, 2001 11:19 AM
Subject: Success with Struts


>
> We've only got a few replies so far.  Surely there must be
> other interesting projects using Struts ?  Please let us know, thanks.
> --
>
> Nick
>
>
>  > Kyle Robinson writes:
>  >  > Does anyone have any stories of great success with Struts?  I'm
trying to
>  >  > convince management that Struts is a good thing and applications can
be
>  >  > developed efficiently and solidly with it. If so please email me
directly as
>  >  > I think this may be slightly off-topic.
>
> Nick Afshartous writes:
>  > I don't think its off-topic.  As a matter of fact I'm also trying
>  > to sell my management and would also like to here about success
>  > stories.  If people could post to the list I'd be happy to
>  > collect the responses for inclusion in the Struts site.
>  >
>  > Suggested format for responses:
>  >
>  >   Company name,  URL of site using Struts
>  >
>  >   Contact person (optional)
>  >
>  >   Description of application using Struts
>  >
>  >   Number of users plus any performance metrics
>  >
>  >   Server environment:  Describe Web/App server being used, and
>  >                        database config (DataSource ?).
>  >
>
>

Re: Connection Pool

Posted by "Craig R. McClanahan" <cr...@apache.org>.

On Fri, 16 Mar 2001, Christophe Vigny wrote:

> Where is the connection pool ?
> in tomcat, in turbine or in strut ?
> 
> 

Turbine and Struts both have connection pool implementations.

Struts can actually use any connection pool that implements
javax.sql.DataSource -- it only defaults to its own.  The Turbine
connection pool, unfortunately, is not useful for this because it does not
implement the DataSource interface.  However, several other connection
pool implementations available on the web are suitable.

There is an ongoing discussion about creating a "Commons" project within
the Jakarta framework to create and maintain shareable implementations of
components like this -- and a connection pool is the primary example of
the kind of code we all want to be able to share.  Once the commons
project is started, the physical source code for the connection pool
Struts uses will move to the Commons project, but this move will have
little or no impact on Struts applications (you'll need a separate JAR
file, but that's easy to deal with).

Craig



Connection Pool

Posted by Christophe Vigny <cv...@artprice.com>.
Where is the connection pool ?
in tomcat, in turbine or in strut ?