spring - How to enable "distributable" programmatically with WebApplicationInitializer -


our webapp configured using spring's webapplicationinitializer like:

@order(1) public class mvcwebapplicationinitializer extends abstractannotationconfigdispatcherservletinitializer {     @override     public void onstartup(servletcontext servletcontext) throws servletexception {         // how enable "distributable" here?     } } 

this app run on tomcat cluster , must therefore marked "distributable" (as explained here). happens adding "distributable" element web.xml. how mark webapp distributable java based config?


Comments

Popular posts from this blog

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

clojure - 'get' replacement that throws exception on not found? -