JAVA 类和 Dreamweaver 集成
我正在创建 jsp 应用程序。我使用 Dreamweaver 创建了 jsp 页面,并使用 Netbeans 创建了一些 java 类。
我现在想要做什么并且想知道,我可以让我的类方法和变量在 Dreamweaver 中显示为标签或提示吗?就像您在上面键入时一样
<p><% out.println("pink")%></p>
,当您键入 out 时, println 会自动显示,并显示其他提示列表。.. 因此,当我有 myClass java 类时...
<p><%=myClass.getMyMethod()%></p>
.getMyMethod 以及所有其他方法将出现。
我希望一切都清楚。只是问问...谢谢!
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.getMyMethod()%></p>
the .getMyMethod with all the other methods will appear.
I hope it's clear. Just asking...Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好在 Dreamweaver 中设计视图部分。并将 *.jsp 文件迁移到 Netbeans IDE。但最新版本的 Dreamweaver 支持此功能。
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.