- Create class SpringSparkFilter which extends SparkFilter. Override method getApplication:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
@Override protected SparkApplication getApplication(FilterConfig filterConfig) throws ServletException { Class<?>[] configClasses = getConfigClasses(filterConfig); try (AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(configClasses)) { String applicationClassName = filterConfig.getInitParameter(APPLICATION_CLASS_PARAM); try { return (SparkApplication) context.getBean(Class.forName(applicationClassName)); } catch (ClassNotFoundException e) { throw new ServletException(e); } } } -
Create class MySparkApplication, which implements SparkApplication. Implement init method:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
@Override public void init() { get("/my-resource", (req, res) -> { return exampleService.getDate(); }); } -
Configure web.xml to use SpringSparkFilter:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
<filter> <filter-name>SpringSparkFilter</filter-name> <filter-class>com.zhentao.sparkjava.example.SpringSparkFilter</filter-class> <init-param> <param-name>applicationClass</param-name> <param-value>com.zhentao.sparkjava.example.MySparkApplication</param-value> </init-param> <init-param> <!-- Configuration locations must consist of one or more comma-delimited fully-qualified @Configuration classes --> <param-name>springConfigLocation</param-name> <param-value>com.zhentao.sparkjava.example.SpringConfig</param-value> </init-param> </filter>
mvn tomcat7:run
Then access http://localhost:8080/current-date. The complete example can be found here.