Re: Application configuration file

2014-01-07 Thread Lukasz Lenart
5723.n5.nabble.com/Struts2-and-JDBC-How-to-read-jdbc-properties-only-once-for-100-or-1000-users-td5714995.html > > > > > > > Le Mardi 7 janvier 2014 10h17, Giuliano Catrambone > a écrit : > > Hi all, > can someone suggest me how to manage an applicatio

Re: Application configuration file

2014-01-07 Thread Chris
: Hi all,     can someone suggest me how to manage an application configuration file     in a struts application?     I'm thinking a configuration file like         .properties     Is there a place in a struts app where I can read the properties cfg file just once     and share it in

Application configuration file

2014-01-07 Thread Giuliano Catrambone
Hi all, can someone suggest me how to manage an application configuration file in a struts application? I'm thinking a configuration file like .properties Is there a place in a struts app where I can read the properties cfg file just once and share it in every

load application configuration

2007-04-03 Thread Bartek
B-INF") to easy reach them. How this could be elegantly achieved in struts2 application?? appreciate any hints bartek -- View this message in context: http://www.nabble.com/load-application-configuration-tf3510437.html#a9805584 Sent from the Struts - User mailing list archive at

RE: application configuration

2004-07-19 Thread Pilgrim, Peter
> -Original Message- > From: Andrew Hill [mailto:[EMAIL PROTECTED] > Sent: 08 July 2004 12:26 > To: Struts Users Mailing List > Subject: RE: application configuration > > > I tend to put such things in XML files rather than properties files > nowadays. > &

RE: application configuration

2004-07-08 Thread Hibbs, David
I'll give you a good reason... file access inevitably risks IOExceptions, and exceptions don't propogate well from a static block. That is to say, when the ClassLoader invokes the static block, it is not invoked from within your code. The exception gets thrown and propogates throu

RE: application configuration

2004-07-08 Thread Andrew Hill
seems like a bad idea to me. -Original Message- From: Kailash Vasani [mailto:[EMAIL PROTECTED] Sent: Thursday, 8 July 2004 20:45 To: 'Struts Users Mailing List' Subject: RE: application configuration Hi Viral & Andrew, I dont have more information, but assumption is that

RE: application configuration

2004-07-08 Thread Geeta Ramani
7;Struts Users Mailing List' > Subject: RE: application configuration > > > Plugin approach has some disadvantages, namely, it gets > invoked for all the > HTTP GET / POST requests, > that includes GET issued for things like images, CSS files etc. >

RE: application configuration

2004-07-08 Thread Kailash Vasani
gets called exactly once (assuming that you dont have class loader related maze :-) Kailash -Original Message- From: Geeta Ramani [mailto:[EMAIL PROTECTED] Sent: Thursday, July 08, 2004 5:54 PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: RE: application configuration Vi

RE: application configuration

2004-07-08 Thread McCormack, Chris
easily. -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of j h Sent: Thursday, 8 July 2004 19:23 To: [EMAIL PROTECTED] Subject: application configuration If there are specific properties that need to be configured on deployment, where should these be put? you could put these

Re: application configuration

2004-07-08 Thread James Mitchell
]> Sent: Thursday, July 08, 2004 8:01 AM Subject: RE: application configuration > Thats one approach. The other is to use a struts plugin. > I guess its a matter of taste. My personal preference is for plugins but > either way also can. > > Just implement the org.apache.struts.P

RE: application configuration

2004-07-08 Thread Geeta Ramani
AIL PROTECTED] > Sent: Thursday, July 08, 2004 8:01 AM > To: Struts > Subject: RE: application configuration > > > Thats one approach. The other is to use a struts plugin. > I guess its a matter of taste. My personal preference is for > plugins but > either way a

RE: application configuration

2004-07-08 Thread Andrew Hill
) -Original Message- From: Viral_Thakkar [mailto:[EMAIL PROTECTED] Sent: Thursday, 8 July 2004 19:56 To: Struts Users Mailing List; [EMAIL PROTECTED] Cc: Nilesh Suresh Rajurkar Subject: RE: application configuration I have a java file which read few properties file and put the key and values read from

RE: application configuration

2004-07-08 Thread Viral_Thakkar
Users Mailing List Subject: RE: application configuration I tend to put such things in XML files rather than properties files nowadays. When the app starts up I have a plugin read the files and create configuration objects (using Digester), and put these objects into the servlet context

Re: application configuration

2004-07-08 Thread j h
Please can you give some example code for this - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: application configuration

2004-07-08 Thread Andrew Hill
. -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of j h Sent: Thursday, 8 July 2004 19:23 To: [EMAIL PROTECTED] Subject: application configuration If there are specific properties that need to be configured on deployment, where should these be put? you could put these in the

application configuration

2004-07-08 Thread j h
If there are specific properties that need to be configured on deployment, where should these be put? you could put these in the application.properties file and read these in from an Action class every time they are needed: MessageResources mr = getResources(request); String config = mr.getMessag