• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

${jdbc.maxPoolSize} value in *-ds.xml file always read as 0 in JBOSS 6.1

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I use JBOSS 6.1 final. I am trying to set the max pool size value in *-ds.xml file. Currently the following approach fails as JBOSS always reads the max pool size as 0,

- I would like to use <max-pool-size>${jdbc.maxPoolSize}</max-pool-size> in /jbossi-6/server/default/deploy/my-ds.xml
- It always ends up with maxPoolSize = 0

The following approach succeeds though,

- If I use <max-pool-size>5</max-pool-size> in /jbossi-6/server/default/deploy/my-ds.xml
- It ends up with maxPoolSize = 5

On the otherhand the same thing works fine in JBOSS4.2 without any changes. Any idea on why it doesn't read ${jdbc.maxPoolSize} and always gets 0? and how I can fix it? I tried few suggestions mentioned in few discussion forums, but no success.

Any help would be much appreciated. Thank you.
 
Do you want ants? Because that's how you get ants. And a tiny ads:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic