Is there a struts customization tool for Netbeans 6.5?
I found the Struts Console Tool , but its development stalled in 2004, so it works with Netbeans 3.2.
Is there a way to install it under Netbeans 6.5?
Are there any options for editing struts-config.xml above the XML level?
source to share
Netbeans supports automatic modifications struts-config.xml
. For example, if you right click on your project and select New/Struts Action
Netbeans will not only create a new class, but it can also change yours struts-config.xml
and add a new tag <action>
. It's not a complicated GUI, of course, but you don't have to manually edit struts-config.xml
all the time.
source to share