Error:java: Annotation processing is not supported for module cycles. Please ensure that all modules
问题原因:
1、在一个父模块中,创建了两个子模块,一个interface 用于定义接口或者实体类pojo ,另一个service用于完善业务逻辑。
2、本来该定义在interface中的pojo包定义在了service模块下,导致interface需要引入实体类时不得不引入service模块的依赖,而service模块又引入了interface的依赖,所以报错
看样子,以后关于实体类和接口的定义最好和业务模块完全分离,只允许service引入interface的依赖,避免出现interface引入service依赖的情况。