New user here. I am configuring H2 as an embedded server in a Spring-MVC webapp.
I successfully implemented the H2 WebSevlet under my Spring app (I wrapped it in a Spring controller, thus applying the webapps existing Spring-Security to it). However I notice that when the servlet is created, it also creates the H2 WebServer by default. This is not desirable in this case since the Servlet is residing within another fully functional web environment. Is it possible to shut off the web server? I see line 49 of WebServlet (the servlets init method) seems to launch the webserver: 48: list.toArray(args); 49: server = new WebServer(); 50: server.setAllowChunked(false); -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
