0
春のコントローラのコードを抽象で複製しないためのベストコード練習。春の抽象的な例
私はhelpfulMethodを取り出し、抽象化を使用して外部からそれらを接続する方法例えば二つのコントローラ
@Controller
public class DoSomethingController {
private Entity helpfulMethod(Form form) {
Entity e = new Entity();
return e;
}
@PostMapping("/something")
public String something(Form form){
helpfulMethod(form);
}
}
@Controller
public class DoSomethingElseController {
private Entity helpfulMethod(Form form) {
Entity e = new Entity();
return e;
}
@PostMapping("/somethingElse")
public String somethingElse(Form form){
helpfulMethod(form);
}
}
を持っていますか?