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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

REST API:擴(kuò)展通用類的原始類型警告

REST API:擴(kuò)展通用類的原始類型警告

我有一堆 RestController 類,看起來(lái)像這樣:public class CategoryController {    private final IModelService modelservice;    private final ICacheHelper cacheHelper;    public CategoryController (IModelService modelservice, ICacheHelper cachehelper) {    this.modelservice = modelservice;    this.cachehelper = cachehelper;    @GetMapping("/foo/bar")    public ResponseEntity<Model1> getModel1 () {        Model1 model1 = modelService.getModel1();        if (model1 == null) {            return ResponseEntity.notFound().build();        }    return ResponseEntity.ok().build();    }    @GetMapping("/foo/bar/baz")    public ResponseEntity<Model2> getModel2 () {        Model2 model2 = modelservice.getModel2();        if (model2 =? null) {            return ResponseEntity.notFound().build();        }    return ResponseEntity.ok().build();    }}所以我創(chuàng)建了一個(gè) Base.class 其中包含以下內(nèi)容public class Base<T> {    private final ICacheHelper cachehelper;    public Base(ICacheHelper cachehelper) {        this.cachehelper = cachehelper;    public ResponseEntity<T> simpleResponse(T object, CacheControl cacheControl) {        return object != null            ? ResponseEntity.ok().cacheControl(cacheControl).body(object)            : ResponseEntity.notFound().cacheControl(cacheHelper.getErrorMaxAge()).build();然后,我使用 Base 擴(kuò)展了 CategoryController,但沒(méi)有泛型。所以我可以使用我的 simpleResponse。我理所當(dāng)然地收到了很多關(guān)于 IntelliJ 中未經(jīng)檢查的作業(yè)的警告。我對(duì)泛型了解得越多,我就越明白這根本不是一個(gè)好主意,只有由于遺留原因才可能實(shí)現(xiàn)。有誰(shuí)知道如何更好地做到這一點(diǎn)并以正確的方式使用泛型?我想到了重構(gòu)RestController,并使它們基于returnValue。這意味著我需要為每個(gè)想要返回額外 ControllerClass 的模型創(chuàng)建。那么我可以public class Model1Controller extends Base<Model1> {    // do stuff}這是一個(gè)好的 API 設(shè)計(jì)嗎?或者你們有其他想法來(lái)解決這個(gè)問(wèn)題嗎?另一個(gè)想法是我可以使用靜態(tài)方法做某種 util 類,而不是擴(kuò)展 Base.class。但我需要先檢查一下
查看完整描述

1 回答

?
喵喵時(shí)光機(jī)

TA貢獻(xiàn)1846條經(jīng)驗(yàn) 獲得超7個(gè)贊

您只需從基類中刪除 <T> 并將 <T> 移動(dòng)到泛型方法中即可。它將刪除未經(jīng)檢查的鑄件的警告:


public class Base {


    private final ICacheHelper cachehelper;


    public Base(ICacheHelper cachehelper) {

        this.cachehelper = cachehelper;

    }


    public <T> ResponseEntity<T> simpleResponse(T object, CacheControl cacheControl) {

         // ...

    }


    public <A> ResponseEntity<A> anotherSimpleResponse(A object, CacheControl cacheControl) {

        // ...

    }

}


查看完整回答
反對(duì) 回復(fù) 2023-06-28
  • 1 回答
  • 0 關(guān)注
  • 179 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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