如何检测嵌入式或独立的应用服务器?

时间:2017-07-04 10:43:42

标签: spring tomcat spring-boot

是否可以检测var filteredList = param.Where(x => x.PathType == "query" || x.PathType == "path").ToList(); //Below list will have result. var duplicateNameList = filteredList.GroupBy(x => x.Name).Where(x => x.Count() > 1).ToList(); var result = param.Where(x => x.PathType != "query" && x.PathType!="path").ToList(); 上的spring-boot应用是否正在运行?

我想创建一个仅在独立服务器上执行的embedded tomcat。 但是我不想使用standalone tomcat server因为所有配置文件也应该在开发期间在嵌入式tomcat中执行。

到目前为止,以下内容无效:

@Configuration

1 个答案:

答案 0 :(得分:1)

未经测试,但您可以查看@ConditionalOnMissingBean(TomcatEmbeddedServletContainerFactory.class)