如何将基于 Spring Boot 构建的依赖项使用到典型的 Spring 应用程序中?
Posted
技术标签:
【中文标题】如何将基于 Spring Boot 构建的依赖项使用到典型的 Spring 应用程序中?【英文标题】:How to work with a dependency that is built on Spring boot into typical spring application? 【发布时间】:2018-03-06 03:11:01 【问题描述】:我们在 Activiti 周围构建了一个 jar 说 ABC,带有 Spring Boot 依赖项并打包为依赖项。 在我们构建的jar上添加的依赖如下。
-
Spring-boot-starter-tomcat
Activiti-spring-boot-starter-basic
Activiti-spring-boot-starter-rest-api
Activiti-spring-boot-starter-actuator
在依赖项管理中,我们添加了工件 spring-boot-depenencies。
当我将此 jar ABC 作为依赖项注入到典型的 Spring 应用程序中时,我遇到了多个问题。有没有办法可以在典型的 Spring 应用程序中使用这个 jar(基于 XML 的配置)?
【问题讨论】:
你能更详细地描述这个问题吗?比如你遇到了什么问题?你遇到了什么错误?请参考***.com/help/how-to-ask。 我在启动 Tomcat 时遇到生命周期异常和并发异常 【参考方案1】:你可以通过两种方式注入 Spring boot 依赖:
通过将其指定为父级(解释为here) 通过使用<dependencyManagement>
标记将其指定为另一个依赖项(解释为here)
完成后,您可以在应用程序中使用 Spring boot 的分类。
当我将此依赖项注入到我运行的典型 Spring 应用程序中时 多个问题
这些问题ClassNotFound
和MethodNotFound
是例外吗?如果是,那么您可能在不同的依赖版本中存在冲突。
【讨论】:
我现在的问题是,是否可以在运行在外部 tomcat 上的典型基于 xml 配置的 spring 应用程序中添加 spring boot 依赖项。 编辑了问题。以上是关于如何将基于 Spring Boot 构建的依赖项使用到典型的 Spring 应用程序中?的主要内容,如果未能解决你的问题,请参考以下文章