我使用spring boot v1.2.3和quickxml jackson注释,我试图将整个兄弟集合暴露给单个JSON响应,但似乎无法获得添加的集合使用正确的注释和神秘代码进入响应。
有人可以帮助我解决这个问题吗?
我不确定弹簧启动中的某些内容是注释之间的原因还是仅仅是配置。我希望将这个集合从子数据库添加到json中。
@Entity
@Table(name = "station")
public class Station implements Serializable {
@OneToMany(mappedBy = "station", cascade = CascadeType.ALL, orphanRemoval = true, fetch = FetchType.EAGER)
private Set<StationTank> stationTanks;
@JsonManagedReference("station-tank")
public Set<StationTank> getStationTanks() {
System.out.println("get tank count: " + stationTanks.size());
return stationTanks;
}
public void setStationTanks(Set<StationTank> stationTanks) {
System.out.println("set tank count: " + stationTanks.size());
this.stationTanks = stationTanks;
}
}
@Entity
@Table(name = "station_tank")
public class StationTank implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "station_tank_id")
private long stationTankId;
@Column(name = "active",nullable=true, columnDefinition="Boolean default false")
private Boolean active;
@ManyToOne(cascade = CascadeType.ALL, optional = false) // as defined in schema
@JoinColumn(name = "station_id")
private Station station;
@JsonBackReference("station-tank")
public Station getStation() {
return station;
}
public void setStation(Station station) {
this.station = station;
}
}
调用此URL我没有将兄弟集合添加到响应中,我想在响应中使用兄弟集合。 http://localhost:8080/stations/1
{
"stationId": 1,
"stationName": "station name 1",
"active": true,
"_links":
{
"self":
{
"href": "http://localhost:8080/stations/1"
},
"stationTanks":
{
"href": "http://localhost:8080/stations/1/stationTanks"
}
}
}
但是当我调用sibling集合的URL时,我得到兄弟集合很好,只是我想在上面的响应中使用兄弟集合。
{
"_embedded":
{
"station_tanks":
[
{
"stationTankId": 1,
"active": true,
"_links":
{
"self":
{
"href": "http://localhost:8080/station_tanks/1"
},
"station":
{
"href": "http://localhost:8080/station_tanks/1/station"
}
}
},
{
"stationTankId": 2,
"active": true,
"_links":
{
"self":
{
"href": "http://localhost:8080/station_tanks/2"
},
"station":
{
"href": "http://localhost:8080/station_tanks/2/station"
}
}
}
]
}
}
答案 0 :(得分:1)
您可以使用@JsonView(class)
注释字段或getter,并在控制器方法上使用相同的注释后使用相同的注释 - 这是更好的解决方案,或者仅使用@JsonIgnore
注释不是预期的字段
Here是有关jackson配置的更多信息
答案 1 :(得分:1)
来自kxyz的答案给了我解决方案,我想为其他人提供更明确的细节到最终解决方案。
我没有使用@JsonManagedReference和@JsonBackReference注释。
我必须创建以下视图:
public class StationView {
public interface Summary{}
public interface SummaryWithSiblings extends Summary{}
}
和控制器(而不是使用必须在启动时生成的弹簧启动神秘控制器),因此可以使用这个新的StationView进行注释
@RestController
public class StationController {
@Autowired
private StationService stationService;
@JsonView(StationView.SummaryWithSiblings.class)
@RequestMapping("/stations")
public List<Station> getStations() {
Integer clientId = 1234;
return stationService.findByClientId(clientId);
}
}
我在父类和兄弟类上公开了JSON公开的每个类变量。
@JsonView(StationView.Summary.class)
@Column(name = "station_name")
private String stationName;)
和兄弟姐妹的收藏方式相同。
@JsonView(StationView.SummaryWithSiblings.class)
@OneToMany(mappedBy = "station", cascade = CascadeType.ALL, orphanRemoval = true, fetch = FetchType.EAGER)
private Set<StationTank> stationTanks;
我从JSON响应中得到了类似的东西。
[
{
"stationId": 1,
"stationName": "station name 1",
"active": true,
"stationTanks":
[
{
"stationTankId": 1,
"active": true
},
{
"stationTankId": 2,
"active": true
}
]
}
]