我创建了一个使用另一个项目的spring boot项目。项目在Eclipse中运行良好,但是生成的jar引发以下错误:名称为'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'的bean上的销毁方法引发了异常java.lang.IllegalStateException:ApplicationEventMulticaster未初始化 exception stack trace 第一个项目的pom.xml
class People:
def __init__(self, uid, age):
self.uid = uid
self.age = age
def get_nonage(self):
# print nonage here which age<18
# expected output: {1: 11, 3: 15}
pass
p1 = People(1, 11)
p2 = People(2, 20)
p3 = People(3, 15)
第二个项目的pom.xml
People.get_nonage()
我从堆栈溢出中尝试了各种解决方案,但是没有一个起作用。