I want to run a custom function in a jsp. And I want to change that function time to time without re-uploading the whole program. how can I do that? I'm talking about something like uploading the code to a database and executing the code in database when needed. How can I do this in a jsp?
Asked
Active
Viewed 59 times
1 Answers
0
Here is a relevant article Convert String to Code
Some of your options is javaassist , BeanShell or even go as far as implementing the JavaCompiler interface.
The choice is up to you