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

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

使用 Lombock 和構(gòu)造函數(shù)注入的 Spring 注入 bean 為空

使用 Lombock 和構(gòu)造函數(shù)注入的 Spring 注入 bean 為空

慕神8447489 2023-01-05 17:09:12
我正在將使用Spring實現(xiàn)的Maven項目遷移到Spring Boot 1.5.20.RELEASE。我有一個適配器類,它將由所有帶注釋的類擴展,@RestControllers以保證與前端的向后兼容性public class RestControllerAdapter {    private MessageTemplate messageTemplate;    private MessageTemplate getMessageTemplate() {        if (messageTemplate == null) {            messageTemplate = ApplicationContextUtils.getBean(MessageTemplate.class);        }        return messageTemplate;    }    protected final String message(@NonNull String code) {        return getMessageTemplate().getMessage(code);    }    protected final String message(@NonNull String code, Object... args) {        return getMessageTemplate().getMessage(code, args);    }    protected final ModelMap success() {        val map = new ModelMap();        map.put("success", true);        map.put("message", getMessageTemplate().getMessage("message.success.default"));        return map;    }    protected final ModelMap error(@NonNull String message) {        val map = new ModelMap(2);        map.put("success", false);        map.put("error", message);        return map;    }    protected final ModelMap retry(@NonNull Exception ex) {        val map = new ModelMap(3);        map.put("success", false);        map.put("error", ex.getMessage());        map.put("confirmar", true);        return map;    }    protected final ModelMap empty() {        return new ModelMap();    }    @ExceptionHandler(JpaSystemException.class)    public ModelMap handleJpaSystemException(JpaSystemException ex) {        log.error(ex.getMessage(), ex);        return createError(ex.getMostSpecificCause());    }    @ExceptionHandler(DataIntegrityViolationException.class)    public ModelMap handleDataIntegrityViolationException(DataIntegrityViolationException ex) {        log.error(ex.getMessage(), ex);        return createError(ex.getMostSpecificCause());    }}
查看完整描述

1 回答

?
慕村225694

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

最后我解決了這個問題。

它與方法中的final關(guān)鍵字有關(guān)UserServiceImpl::update

它不允許注入過程正常工作并且它完全有意義,因為@Transactional不能注釋的類final

我已經(jīng)刪除了它,現(xiàn)在一切正常。示例代碼在這里


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

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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