0
問題: 的CrudRepository返回重複的故障JSON響應_links關鍵重複_links在CrudRepository REST響應關鍵
{"_links" : { },
"_embedded" : {
"skills" : [ {
"name" : "REST",
"_links" : { }, <----------- Empty Links
"_embedded" : { },
"_links" : { <-------------- Usefull Links
"self" : {
"href" : "http://localhost:8081/api/skills/1",
"templated" : false
}
}
} ] } }
使用的類: 庫: 進口org.springframework.data.repository.CrudRepository;
public interface SkillRepository extends CrudRepository<Skill, Long> {}
實體:
@Entity
@Getter
@Setter
public class Skill {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@NotNull
private String name;
}
如果我包括傑克遜-數據綁定出現問題。
<artifactId>jackson-databind</artifactId>
<version>2.6.0</version>
問題依然存在於版本2.7.2中 –