中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

@Autowired 注入對自己new的對象無效,相當于對象沒用spring管理

發布時間:2020-08-19 21:49:59 來源:網絡 閱讀:1382 作者:study_IT 欄目:編程語言

定義了一個接口實現類UserServiceImpl,并在控制類中用UserService userService=new UserServiceImpl(); 創建實現類的對象,調用實現類的方法userService.queryById(id),執行到jpaQueryFactory這句時會報空指針錯誤。

代碼如下
實現類:
import ...

@Service("userService")
public class UserServiceImpl implements UserService {

@Autowired
JPAQueryFactory jpaQueryFactory;

@Override
public List<UserEntity> queryById(Interger id){
List<UserEntity> list=null;
QUserEntity qUserEntity=QUserEntity.userEntity;

    Predicate predicate1=qUserEntity.id.eq(id).and(qUserEntity.state.eq("10A"));

    list=jpaQueryFactory.selectFrom(qUserEntity)
                            .where(predicate1)
                            .fetch();

    return list;

};
}

控制類:
import ...
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

@Controller

@RequestMapping("api/user/")

public class UserController {

@ResponseBody
@RequestMapping(value = "getTree" , method = RequestMethod.POST)
public Map<String, Object> getTree(@RequestBody UserTreeDto dto){

   UserService userService=new UserServiceImpl();
            List<UserEntity> list = userService.queryById(id);

          resultMap.put("data",list);
    resultMap.put("result","suc");
    return resultMap;
}

}

解決辦法:修改控制類,用注入的方式定義實現類,如下
@Controller

@RequestMapping("api/user/")

public class UserController {

@Autowired
UserService userService;

@ResponseBody
@RequestMapping(value = "getTree" , method = RequestMethod.POST)
public Map<String, Object> getTree(@RequestBody UserTreeDto dto){

    Interger id=dto.getId();
            List<UserEntity> list = userService.queryById(id);

          resultMap.put("data",list);
    resultMap.put("result","suc");
    return resultMap;
}

}

原因說明:這是因為自己new的對象沒被spring管理導致的,這種情況就相當于沒用spring管理,所以它不會自動進行依賴注入,jpaQueryFactory自然就是null,當用到的時候就報空指針異常了,盡管jpaQueryFactory是用注入方式定義的也不管用。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长宁区| 延寿县| 钦州市| 淮阳县| 镇平县| 漳州市| 蒙城县| 民权县| 南汇区| 望谟县| 商河县| 贵南县| 浏阳市| 无极县| 郧西县| 两当县| 沛县| 内黄县| 白山市| 鹰潭市| 雅安市| 西贡区| 宣武区| 福鼎市| 灌云县| 徐汇区| 南皮县| 大连市| 霍林郭勒市| 上林县| 秭归县| 登封市| 新巴尔虎左旗| 祁东县| 乌兰浩特市| 汤原县| 广宗县| 唐海县| 大渡口区| 蒙城县| 亚东县|