Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用一个弹簧配置文件创建一个项目。但在配置文件中,所有 bean 都是没有任何实现的接口。我会再创建一个包含所有实现的项目。我也可以对第一个项目的所有 bean(接口)使用 abstract = true ,以便用户无法使用它们。
谢谢!
我无法想象你想在 spring 配置文件中指定接口的情况。所以我认为你也没有必要。您可以使用它abstract=true来创建可重用或部分 bean 定义。
abstract=true
你不能在你的 spring 配置中指定接口,因为它们不能被实例化。您到底要归档什么?