You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@aries.apache.org by "Roland Hauser (JIRA)" <ji...@apache.org> on 2017/05/28 14:16:04 UTC

[jira] [Created] (ARIES-1725) Support for Spring-MVC

Roland Hauser created ARIES-1725:
------------------------------------

             Summary: Support for Spring-MVC
                 Key: ARIES-1725
                 URL: https://issues.apache.org/jira/browse/ARIES-1725
             Project: Aries
          Issue Type: New Feature
          Components: Blueprint
    Affects Versions: blueprint-spring-0.3.0
            Reporter: Roland Hauser


Currently, a Spring-MVC application cannot be run with Aries Blueprint because no ApplicationContext implementation is available which integrates with the Blueprint-Container. Such a class should implement org.springframework.web.context.ConfigurableWebApplicationContext and must have a parameter-less constructor. That class would be used as follows:

{code}
<servlet>
	<servlet-name>cms</servlet-name>
	<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
	<load-on-startup>1</load-on-startup>
	<init-param>
		<param-name>contextClass</param-name>
		<param-value>org.foo.BlueprintAwareContext</param-value>
	</init-param>
</servlet>
{code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)