这是我的控制器:
// CREATE NEW TODOITEM FROM SENT JSON
@PostMapping("/todos")
@ResponseStatus(HttpStatus.OK)
public ToDoItem newToDo(
@RequestBody ToDoItem toDoItem,
Principal principal
) {
User currentUser = userService.findLoggedInUser(principal);
return toDoItemService.addToDo(toDoItem, currentUser);
}
toDoItemService.addToDo :
public ToDoItem addToDo(ToDoItem toDoItem, User user) {
String toDoTitle = toDoItem.getTitle();
LocalDate toDoDueDate = toDoItem.getDueDate();
ToDoItem newToDo = new ToDoItem(user, toDoTitle, toDoDueDate);
return toDoItemRepository.save(newToDo);
}
ToDoItem实体(ommited constructors and getters / setters):
@Entity
@Table (name = "TO_DO_ITEMS")
public class ToDoItem extends BaseEntity {
@Column(name = "TITLE", nullable = false)
private String title;
@Column(name = "COMPLETED")
private boolean completed;
@Column(name = "DUE_DATE", nullable = false)
@Convert(converter = LocalDateAttributeConverter.class)
@JsonDeserialize(using = LocalDateDeserializer.class)
@JsonSerialize(using = LocalDateSerializer.class)
private LocalDate dueDate;
// a ToDoItem is only associated with one user
@ManyToOne(cascade=CascadeType.PERSIST)
@JoinColumn(name = "USER_ID")
private User user;
我的 toDoItemRepository 只是扩展了CrudRepository。
拍摄时:
{
"title":"testtodo3",
"dueDate": [
2015,
12,
6
]
}
在localhost:8080/todos
我明白了:
{
"id": 1,
"title": "testtodo3",
"completed": false,
"dueDate": [
2015,
12,
6
],
"user": {
"id": 1,
"username": "gruchacz",
"password": "password",
"email": "newUser@example.com"
}
}
当我只返回ToDoItem时(为了从CrudRepository中保存),为什么我的用户的所有详细信息都可见?我知道我的ToDoItem链接到User,但我希望它只返回ID,title,completed和dueDate没有用户数据?我知道我可以覆盖ToDoItem实体中的toString方法,并从该控制器返回一个String,但它非常不优雅,并且更愿意只返回ToDoItem和jackson来处理转换为JSON。
答案 0 :(得分:1)
您有两种选择:
1:在ToDoItem
的用户栏位上添加@JsonIgnore,杰克逊会忽略它,或
2:使用DTO
模式,创建另一个值对象以将其传回HTTP层。
我会推荐第二个选项