0

Spring Boot 文档说明了如何为具有简单名称的东西命名 Spring Boot 启动器,例如acmeacme-spring-boot-starter

然而,自动配置的“事物”并不总是这么简单的名字。有多个部分的名字怎么样?

例如,CXF 围绕基本名称“拆分”这些部分以表达项目组件层次结构:

  • cxf -spring-boot-starter- jaxws
  • cxf -spring-boot- starter- jaxrs

我发现了具有这些命名模式的其他变体

  • foo-bar -spring-boot-starter
  • spring-boot-starter- foo-bar(由于可能与 Spring Boot 项目的启动器冲突,可能不正常)

有命名约定或建议吗?

4

1 回答 1

0

https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-features.html#boot-features-custom-starter

在你的情况下,后缀应该是-spring-boot-starter这样,我会说:

  • cxf - jaxws -spring-boot-starter
  • cxf - jaxrs -spring-boot-starter
于 2019-11-27T14:27:59.430 回答