There is a method in BaseController, e.g.
public abstract class BaseManagementController<V, F extends BaseForm> {
@PostMapping
@ResponseStatus(HttpStatus.CREATED)
protected void add(@Valid @RequestBody F form, HttpServletRequest request) {
// ...
}
}
and a concrete Controller extends it and override add method
public class BannerController extends BaseManagementController<BannerVO, BannerForm> {
@Override
public void add(@Valid @RequestBody BannerForm form, HttpServletRequest request) {
super.add(form, request);
}
}
when I javap
BannerController I see two add method
public void add(com.foo.admin.web.vo.BannerForm, javax.servlet.http.HttpServletRequest);
descriptor: (Lcom/foo/admin/web/vo/BannerForm;Ljavax/servlet/http/HttpServletRequest;)V
flags: ACC_PUBLIC
public void add(com.foo.admin.web.vo.BaseForm, javax.servlet.http.HttpServletRequest);
descriptor: (Lcom/foo/admin/web/vo/BaseForm;Ljavax/servlet/http/HttpServletRequest;)V
flags: ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
why have two add method? Is it overload?
Because there could be some functionality that might be more generally-applicable to all
Controllers
. And that general functionality could be implemented inBaseManagementController.add()
…Then your more specialized implementations like
BannerController.add()
could do something banner-related only…The subclass's
add()
could simply callsuper.add()
and piggyback off of existing functionality in its super's implementation.No. But it is overridden…