我在我的项目中使用spring 4.3.3.RELEASE。
按照春天documentation
我可以看到BeanUtils位于package org.springframework.beans.BeanUtils
现在我尝试引用
import org.springframework.beans.BeanUtils;
我通过eclipse得到错误
无法解析导入org.springframework.beans.Beanutils
但是,当我更改为spring 4.2.2.RELEASE
时,它可以正常工作吗?
所以我的问题是,因为4.3.3
因为它显示为错误。
答案 0 :(得分:0)
错误是因为输入错误。
根据Documentation,
BeanUtils
不是Beanutils;
U
字母大写。
BeanUtils
不是要在建议中显示的包,而是Abstract Class
所以在ctrl+space
之后键入.
(即{{ 1}})
使用org.springframework.beans.ctrl+space
从1.0到1.0都是 import org.springframework.beans.BeanUtils;
。
答案 1 :(得分:0)
如果你正在用eclipse和maven构建,请使用命令mvn eclipse:eclipse。