Skip to content

Custom Spring Configuration

Ryan Heaton edited this page Sep 17, 2015 · 1 revision

Note: The following applies to Enunciate version 1.x, and not to Enunciate 2

Custom Spring Configuration

You can apply your own Spring configuration by creating your bean definition file and importing it into the Spring application context:

<enunciate ...>
 <modules>
   <spring-app ...>
     <springImport file="/path/to/my/beans/file" />

     <!-- you can also import a file on the runtime classpath -->
     <springImport uri="classpath:/mybeans.xml" />
   </spring-app>
 </modules>
</enunciate>
Clone this wiki locally