-
Notifications
You must be signed in to change notification settings - Fork 1
UsingSpringWithSpEL
Sebastian Hoß edited this page Oct 5, 2013
·
6 revisions
To use Spring together with SpEL, declare the following dependency and replace ${contracts-version}
with the latest release
<dependencies>
<dependency>
<groupId>com.github.sebhoss.contract</groupId>
<artifactId>contract-spring-spel</artifactId>
<version>${contracts-version}</version>
</dependency>
</dependencies>
then import the provided SpEL configuration
import com.github.sebhoss.contract.configuration.DefaultSpringConfiguration; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import;
@Configuration @Import(DefaultSpringConfiguration.class) public class CompanySpringConfiguration {
// .. your bindings
}
and annotate your business methods as usual using the Spring expression language. Consult the example project for more details.