EmbeddedWebApplicationContext

EmbeddedWebApplicationContext

我尝试下面的计划任务的公会,它的工作。

http://spring.io/guides/gs/scheduling-tasks/

接下来,我想从@Scheduled带注释的方法访问web-api,并将以下依赖项添加到build.gradle中,以使用RestTemplate

compile 'org.springframework.boot:spring-boot-starter-web:1.2.1.RELEASE'


但是,以下发生异常。

Exception in thread "main" org.springframework.context.ApplicationContextException: Unable to start embedded container; nested exception is org.springframework.context.ApplicationContextException: Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory bean.
at org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.onRefresh(EmbeddedWebApplicationContext.java:133)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:474)
at org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.refresh(EmbeddedWebApplicationContext.java:118)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:691)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:321)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:961)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:950)
at my.pkg.Application.main(BatchApplication.java:14)


原因:org.springframework.context.ApplicationContextException:由于缺少EmbeddedServletContainerFactory bean而无法启动EmbeddedWebApplicationContext。
    在org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.getEmbeddedServletContainerFactory(EmbeddedWebApplicationContext.java:183)
    在org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.createEmbeddedServletContainer(EmbeddedWebApplicationContext.java:156)处
    在org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.onRefresh(EmbeddedWebApplicationContext.java:130)

我需要特定的设置来使用RestTemplate方法中的@Scheduled吗?

我的完整build.gradle在下面,其他文件相同。

buildscript {
  repositories {
    mavenLocal()
    mavenCentral()
  }
  dependencies {
    classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.2.1.RELEASE'
  }
}

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'

repositories {
  mavenLocal()
  mavenCentral()
}

dependencies {
  compile 'org.springframework.boot:spring-boot-starter:1.2.1.RELEASE'
  // below line I added.
  compile 'org.springframework.boot:spring-boot-starter-web:1.2.1.RELEASE'
}

最佳答案

spring-boot-starter-web的依赖关系用于需要servlet容器的Web应用程序。如果您只需要RestTemplate,那就太过分了。用org.springframework:spring-web上的一个替换依赖项

08-05 17:36