JAVA Class and Dreamweaver integration
I am creating jsp application. I have created jsp pages using dreamweaver and some java classes using Netbeans.
what i want to do now and want to know, can i like make my classes methods and variables appear as tags or hints in dreamweaver? like when you type
<p><% out.println("pink")%></p>
above, the println will automatically appear with the list of other hints when you type out... so when i have myClass java class...
<p><%=myClass.get开发者_运维问答MyMethod()%></p>
the .getMyMethod with all the other methods will appear.
I hope it's clear. Just asking...Thanks!
Its better to design the view part in Dreamweaver. And migrate the *.jsp files to Netbeans IDE. But this feature is supported in latest versions of Dreamweaver.
精彩评论