I have a webapp that is running on two load balanced tomcat servers. What's the best way for the app to determine which server it's running on?

While I can tell from a sessionid which server it's running on (as .jvm1 and .jvm2 get appended), how can I get similar information in a background task (scheduled via Spring's @Scheduled annotation)?

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

It might be overkill and if there's another way it's probably better, but you might be able to query the tomcat Engine MBean and get it's jvmRoute property. The MBean is usually called Catalina:type=Engine or Catalina:type=Engine,service=something (see here for more details).

link|improve this answer
It might be overkill, but it does do exactly what I want it to do. – maethorechannen May 12 '11 at 15:44
feedback

If you run your instance on different machines, you can simply get hostName InetAddress.getLocalHost().getCanonicalHostName()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.