为了账号安全,请及时绑定邮箱和手机立即绑定

get 404可能遇到的问题

在RouterFunctionConfiguration中创建的findall方法后,需要去UserRepository中返回Map存储:
return repository.values();


正在回答

1 回答

/**
 * {@link User} {@link Repository}
 */
@Repository
public class UserRepository {

    /**
     * 采用内存型的存储方式->Map
     */
    private final ConcurrentMap<Integer, User> repository = new ConcurrentHashMap<>();

    private final static AtomicInteger idGenerator = new AtomicInteger();

    /**
     * 保存用户对象
     *
     * @param user {@link User} 对象
     * @return 如果保存成功,返回<code>true</code>,
     * 否则返回<code>false</code>
     */
    public boolean save(User user) {
        //ID从1开始
        Integer id = idGenerator.incrementAndGet();
//        设置ID
        user.setId(id);
        return repository.put(id, user) == null;
    }

    /**
     * 返回所有用户
     *
     * @return
     */
    public Collection<User> findAll() {
        return repository.values();
    }
}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

get 404可能遇到的问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信