Parameter 0 of method selectAll in Group11.controller.TbInsurancePolicyController required a bean of type 'int' that could not be found.
时间: 2024-04-27 12:21:17 浏览: 107
这个错误提示的意思是在Group11.controller.TbInsurancePolicyController类的selectAll方法中需要一个名为int的bean,但是Spring容器找不到该bean。可能的原因包括:
1. 在TbInsurancePolicyController类中的selectAll方法参数列表中有一个类型为int的参数,但是没有在Spring容器中定义该类型的bean。
2. 在TbInsurancePolicyController类中的selectAll方法使用了一个名为int的注解或者参数修饰符,但是这个注解或者修饰符并不是Spring容器中预定义的。
3. 在其他地方定义了一个名为int的bean,但是这个bean的类型不是int,导致Spring容器无法注入到TbInsurancePolicyController类的selectAll方法中。
你可以检查一下这些可能的原因,看看能否解决这个问题。
阅读全文