使用 spring 引导和 spring 数据 jpa 时一对多关系的奇怪行为
wiered behavior of OneToMany relationship while using spring boot and spring data jpa
我正在 Spring Boot with Data JPA 中开发简单的 Crud 应用程序,我的目标很简单,我有两个实体:Foo.java
@Data // lombok annotation
@Entity(name = "foos")
public class Foo{
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(unique = true, nullable = false)
private Integer fooId;
private String FooName;
@NonNull
@OneToMany(cascade = CascadeType.ALL)
@JoinColumn(name = "bar_id")
private List<Bar> barList;
}
Bar.java
@Data
@Entity(name = "bars")
public class Bar{
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "id", unique = true, nullable = false)
private Integer barId;
private String barTitle;
}
在我的控制器中,我想将 Foo
和 Bars
的列表保存为:
@Controller
@RequestMapping(value = "/foo")
public class FooController {
private final FooService fooService;
private final BarService barService;
public FooController(FooService fooService, BarService barService) {
this.fooService = fooService;
this.barService = barService;
}
@GetMapping(value = "/{id}/add_bar")
public String addBar(@PathVariable("id") Integer id, Model model){
model.addAttribute("foo", fooService.findById(id));
model.addAttribute("bar", new Bar());
return "add_bar";
}
@PostMapping(value = "/{id}/add_bar")
public String saveBar(
@PathVariable("id") Integer id,
@ModelAttribute("bar") Bar bar,
BindingResult result
){
if (result.hasErrors()) {
return "add_bar";
}
// update foo by adding new bar and save
Foo foo = getFooAndAddBar(id, bar);
fooService.save(foo);
// save bar
barService.save(bar);
return "redirect:/foo/" + foo.getFooId();
}
// update foo by adding new bar and save
private Foo getFooAndAddBar(Integer id, Bar bar) {
Foo foo = fooService.findById(id);
ArrayList<Bar> barList = new ArrayList<>();
barList.add(bar);
foo.setBarList(barList);
return foo;
}
}
第一个柱由 foo id 保存和获取,但是每当我想添加另一个柱时,它只会更新第一个柱,而不是在数据库中插入新的柱记录。 @OneToMany 协会是否缺少任何东西?或者程序的其他部分缺少什么?请。
您每次调用函数时都在设置 barlist
。你写了foo.setBarList(barList);
。每次这将覆盖以前的 barlist 然后保存它导致覆盖以前的值。而不是这个试试这个 foo.getBarList().add(Bar)
。它将获取之前的柱列表,然后将新柱添加到列表中。在此之后只需保存实体
我正在 Spring Boot with Data JPA 中开发简单的 Crud 应用程序,我的目标很简单,我有两个实体:Foo.java
@Data // lombok annotation
@Entity(name = "foos")
public class Foo{
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(unique = true, nullable = false)
private Integer fooId;
private String FooName;
@NonNull
@OneToMany(cascade = CascadeType.ALL)
@JoinColumn(name = "bar_id")
private List<Bar> barList;
}
Bar.java
@Data
@Entity(name = "bars")
public class Bar{
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "id", unique = true, nullable = false)
private Integer barId;
private String barTitle;
}
在我的控制器中,我想将 Foo
和 Bars
的列表保存为:
@Controller
@RequestMapping(value = "/foo")
public class FooController {
private final FooService fooService;
private final BarService barService;
public FooController(FooService fooService, BarService barService) {
this.fooService = fooService;
this.barService = barService;
}
@GetMapping(value = "/{id}/add_bar")
public String addBar(@PathVariable("id") Integer id, Model model){
model.addAttribute("foo", fooService.findById(id));
model.addAttribute("bar", new Bar());
return "add_bar";
}
@PostMapping(value = "/{id}/add_bar")
public String saveBar(
@PathVariable("id") Integer id,
@ModelAttribute("bar") Bar bar,
BindingResult result
){
if (result.hasErrors()) {
return "add_bar";
}
// update foo by adding new bar and save
Foo foo = getFooAndAddBar(id, bar);
fooService.save(foo);
// save bar
barService.save(bar);
return "redirect:/foo/" + foo.getFooId();
}
// update foo by adding new bar and save
private Foo getFooAndAddBar(Integer id, Bar bar) {
Foo foo = fooService.findById(id);
ArrayList<Bar> barList = new ArrayList<>();
barList.add(bar);
foo.setBarList(barList);
return foo;
}
}
第一个柱由 foo id 保存和获取,但是每当我想添加另一个柱时,它只会更新第一个柱,而不是在数据库中插入新的柱记录。 @OneToMany 协会是否缺少任何东西?或者程序的其他部分缺少什么?请。
您每次调用函数时都在设置 barlist
。你写了foo.setBarList(barList);
。每次这将覆盖以前的 barlist 然后保存它导致覆盖以前的值。而不是这个试试这个 foo.getBarList().add(Bar)
。它将获取之前的柱列表,然后将新柱添加到列表中。在此之后只需保存实体