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.
当我运行那个时候,就会产生这个错误。
500 无法实例化 bean 类 [org.broadleafcommerce.core.catalog.service.CatalogService]:指定的类是一个接口
在某个地方,你正在做一个
new CatalogService();
由于它是一个接口,因此您可以使用它创建对象,但可以创建一些实现该接口的类。你可以做:
public class MyCatalogService implements CatalogService { ... }
和
CatalogService cs = new MyCatalogService();
阅读更多关于 Java 类、接口和继承的信息。啊,这个问题很简单;但如果您想要答案,您可能需要为您的问题添加更多细节。