The situation is that I work on a web project where I want to add some filter
and servlet
to the web.xml
file. For example:
<servlet>
<servlet-name>spring-mvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
Here I must enter manually the servlet-class
element. And the same way for the filter-class
element. I think it's not very convenient.
How can I get an auto-complete feature here?