java - Content assist in web.xml -
the situation work on web project want add filter
, servlet
web.xml
file. example:
<servlet> <servlet-name>spring-mvc</servlet-name> <servlet-class>org.springframework.web.servlet.dispatcherservlet</servlet-class> </servlet>
here must enter manually servlet-class
element. , same way filter-class
element. think it's not convenient.
how can auto-complete feature here?
eclipse not have content-aware editor web.xml, xml editor content assist driven schema. means no content assist java type values.
there effort underway create form editor web.xml appropriate content assist, validation, etc., work not @ point can used.
http://projects.eclipse.org/projects/webtools.java-ee-config
you may able find commercial plugins web.xml editor if search "web.xml editor eclipse".
Comments
Post a Comment