我有一个名为“ResponseEntity”的架构。生成的模型类具有相同的名称。 这与Springframework的ResponseEntiy类冲突,报错
错误:具有相同简单名称的类型已经由 ResponseEntity 的单一类型导入定义 导入 org.springframework.http.ResponseEntity;
API 文件:
default ResponseEntity<ResponseEntity> myClass() {
// code
return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
}
这里,func返回类型的ResponseEntity来自
org.springframework.http.ResponseEntity
而通用类型(<> 中的一个)ResponseEntity 是我的模型类。
废弃的方法:
有这样的方法吗?