重构遇到个小问题,记录下: 错误信息: *************************** APPLICATION FAILED TO START *************************** Description: Field xxxService in com.alibaba.xxx required a single bean, but 2 were found: 解决方法: Action: Consider marking one of the beans as @Pri…
包01: package ReflectionConstructor; public class ReflectionFieldPoint { private int x; public int y; public ReflectionFieldPoint(int x, int y) { super(); this.x = x; this.y = y; } } 包02:package ReflectionConstructor; import java.lang.reflect.Field; /…
错误信息: org.springframework.dao.DataIntegrityViolationException: StatementCallback; SQL [delete from table_a where union_id = 123456789;]; Field 'id' doesn't have a default value; nested exception is java.sql.BatchUpdateException: Field 'id' doesn't ha…