| Author |
getting property value in jsp page from application.properties
|
Mukhi Vla
Ranch Hand
Joined: Apr 22, 2010
Posts: 50
|
|
i am trying to get property value from application.properties file. I tried giving the following command
But in oputput i am getting it as ???propname1???
Can any one suggest me how to get property value in jsp using JSTL?
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56179
|
|
|
Did you bind the bundle? Look though the other tags in the JSTL fmt set for more information.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Mukhi Vla
Ranch Hand
Joined: Apr 22, 2010
Posts: 50
|
|
I am using Spring framework. I have the application.properties file loaded in the following way in applicationContext.xml file.
so it is not resourcebundle properties file. How ever i would like to know how to bundle this properties file?
|
 |
Mukhi Vla
Ranch Hand
Joined: Apr 22, 2010
Posts: 50
|
|
The above is working fine. but i want to get ten property values in nearly 50 jsp pages. I am looking for some other way where i can bind this bundle at only one place.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56179
|
|
|
Read the JSTL specification on this issue. As I recall, you can bind the bundle to application context and have it available everywhere.
|
 |
Mukhi Vla
Ranch Hand
Joined: Apr 22, 2010
Posts: 50
|
|
I got it. In applicationContext.xml file.
I set the follwoing bean definition. and its working
Where application value refers to my application.properties file
|
 |
 |
|
|
subject: getting property value in jsp page from application.properties
|
|
|