ConfigurableEmbeddedServletContainerFactory的maven依赖在哪里?

时间:2014-12-08 03:03:00

标签: java spring maven ssl spring-boot

我正在尝试将此示例用于setting up SSL with Tomcat in Spring Boot。遗憾的是,该示例缺少import语句,因此我尝试推断出ConfigurableEmbeddedServletContainerFactory的正确import语句。

但是,我仍然遇到以下错误: 导入org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainerFactory无法解析

我认为这意味着我错过了这个特定类的maven依赖。任何人都可以指出这是什么?

1 个答案:

答案 0 :(得分:2)

来自文件包代码的

org.springframework.boot.context.embedded

maven依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot</artifactId>
    <version>x.x.x</version>
</dependency>