I have a Vaadin
application which uses ru.xpoft.vaadin.SpringVaadinServlet
as its single servlet. Now I am trying to change the servlet class to com.vaadin.spring.server.SpringVaadinServlet
.
But I don't know how to specify the UI class for com.vaadin.spring.server.SpringVaadinServlet
inside web.xml
. I know it is possible to specify the servlet and UI class without a web.xml
(Using @WebServlet
and @VaadinServletConfiguration
annotations). But still I require to configure the servlet using web.xml
.
Please help.