91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

@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

凌源市| 元氏县| 奉贤区| 福泉市| 新疆| 兴隆县| 安徽省| 濉溪县| 普兰店市| 常熟市| 鲜城| 崇州市| 乌拉特中旗| 海门市| 秦安县| 德安县| 巴里| 金堂县| 榆社县| 伊宁县| 武义县| 江达县| 景谷| 二连浩特市| 潞西市| 司法| 长春市| 汉寿县| 仁寿县| 桓仁| 陇南市| 嘉义县| 乌审旗| 余江县| 浦城县| 普兰店市| 嵊州市| 岢岚县| 普兰县| 慈利县| 清水河县|