第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Spring 中的抽象控制器

Spring 中的抽象控制器

RISEBY 2023-05-10 14:21:32
幾周前我開始使用 Spring Boot,但我仍然無法理解“AbstractController”的概念。public abstract class AbstractController {    protected static final String CUSTOMER_SESSION_ID = "auth";    protected static final String SHOOPY_CART_ID = "SHOOPY_CART";    protected static final String REFERER_HEADER = "Referer";    @Autowired    protected CatalogService catalogService;    @Autowired    protected TotalAmountCalculator amountCalculator;    @Autowired    protected CustomerRepository customerRepo;    @Autowired    protected CartRepository cartRepository;    //Insert necessary data to the header tag    public void populateHeaderData(Model model, Cart activeCart) {        HeaderDTOBuilder.HeaderDTO headerDTO = new HeaderDTOBuilder().                withAmountCalculator(amountCalculator)                .withActiveCart(activeCart)                .withCategories(catalogService.getCategories()).build();        model.addAttribute("headerDTO", headerDTO);    }    public void populateHeaderData(Model model, HttpServletRequest request) {        Cart activeCart = getCartFrom(request);        if(activeCart == null){            activeCart = new Cart();        }        populateHeaderData(model, activeCart);    }}我很想了解 Controller 和 AbstractController 之間的區(qū)別。
查看完整描述

2 回答

?
楊__羊羊

TA貢獻1943條經(jīng)驗 獲得超7個贊

添加Abstract到類的名稱是一種簡單的方法來指定這個類是abstract(在你的情況下聲明public abstract class)。這意味著開發(fā)此類是為了合并一些將被多個子類重用的通用功能。JDK本身也有這樣的類java.util.AbstractList

查看完整回答
反對 回復(fù) 2023-05-10
?
莫回?zé)o

TA貢獻1865條經(jīng)驗 獲得超7個贊

只有當(dāng)您擁有或計劃擁有多個具有共享邏輯或?qū)嵗兞康目刂破黝悤r,您才會創(chuàng)建一個抽象控制器。



查看完整回答
反對 回復(fù) 2023-05-10
  • 2 回答
  • 0 關(guān)注
  • 187 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號