您好,登錄后才能下訂單哦!
定義了一個接口實現類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是用注入方式定義的也不管用。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。