-
Notifications
You must be signed in to change notification settings - Fork 200
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
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>