You need to import this dependency into Maven:
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency>
Note that the version number may be omitted if you use the parent Spring Boot module:
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.4.3.RELEASE</version> </parent>
where 1.4.3.RELEASE is the latest version of Spring Boot.
ZenLulz
source share