ArangoDB ArangoRepository导致空指针异常

33qvvth1  于 2022-12-09  发布在  Go
关注(0)|答案(1)|浏览(153)

当我尝试在ArangoDB上构建一个Sping Boot 微服务时,我在使用仓库对象时得到了一个NullPointerException。
用于加载所有存储库的Config类:

@EnableArangoRepositories(basePackages= {"com.parapentex"})
public class ArangoDBTestConfig extends AbstractArangoConfiguration{

存储库类:

package com.parapentex.repository;

import com.arangodb.springframework.repository.ArangoRepository;
import com.parapentex.entity.User;

public interface UserRepository extends ArangoRepository<User>{

}

和服务类:

public class UserService {

    @Autowired 
    private UserRepository repository;

    /**
     * Create an user
     * 
     * @param user
     * @return
     */
    public User save(String user) {
        User newUser = new User();
        JSONObject userJSON = new JSONObject(user);
        try {
            newUser.setName(userJSON.getString("name"));
            newUser.setAge(userJSON.getInt("age"));
        } catch (Exception e) {
            e.printStackTrace();
        }
System.out.println(repository);     
        return repository.save(newUser);
    }

在这里我得到了NullPointerException(存储库未被集成)。
你知道吗?

java.lang.NullPointerException: null
    at com.parapentex.unvist.service.UserService.save(UserService.java:32) ~[classes/:na]
    at com.parapentex.unvist.controller.UserController.create(UserController.java:30) ~[classes/:na]

谢谢你!

gkn4icbw

gkn4icbw1#

只是服务类中的一个错误配置!已修复。

相关问题