| Author |
can dependency between Java & JSP code be displayed visually?
|
Neha Parab
Greenhorn
Joined: Feb 16, 2012
Posts: 10
|
|
hey there,
I'm fairly new to JSP & not very sharp at Java too. I'm a bit stuck up in a problem which involves both. I have an eclipse plugin developed which shows visualization of interaction between Java code & relational DB. I want to extend the functionality to web based development.
I want to show visualization between JSP code & DB .
I want to be able to match the Java code to JSP code.
Any tips???
Thanks in advance
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
Here's a tip: don't put any code which accesses a database in a JSP. It doesn't belong there. Put the code into a servlet, or into a helper class which is called from the servlet.
Once you decide to do it that way -- and you should -- then you don't need to ask this question.
|
 |
Neha Parab
Greenhorn
Joined: Feb 16, 2012
Posts: 10
|
|
|
i want to display the end visualization in web based environment. would this solution work for that???
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
|
I don't see why not. You have a plugin which does the visualization for Java code. Your web application will contain Java code. Therefore the plugin will do the visualization for your web application, I suppose. Although I don't know exactly what that plugin does; it might not do whatever it is you really have in mind.
|
 |
 |
|
|
subject: can dependency between Java & JSP code be displayed visually?
|
|
|