baudot
baudot

Reputation: 1618

.jsp page not seeing newly added function to compiled java .class file

I'm working in another company's code base for a .jsp based site. Most of the site is straight up .jsp pages, but they have a few .java objects those pages use as well. I've modified one of those objects to add an extra function to it, recompiled, and yet the .jsp pages generate a "Method ... not found in class" error when I try calling it.

Obvious things I've already checked out:

What else might it be?

Upvotes: 1

Views: 307

Answers (1)

Deco
Deco

Reputation: 3321

Generally you have to explicitly set up hot-code replace in Tomcat, and usually it doesn't support adding method signatures - you may have to get the application redeployed and restarted to see the effects properly.

Here's some links for reference information about it:
Link 1
Link 2

Upvotes: 2

Related Questions