导入org.springframework.beans.Beanutils无法解析

时间:2016-10-07 06:49:43

标签: java spring

我在我的项目中使用spring 4.3.3.RELEASE。

按照春天documentation

我可以看到BeanUtils位于package org.springframework.beans.BeanUtils

现在我尝试引用

import org.springframework.beans.BeanUtils;

enter image description here enter image description here

我通过eclipse得到错误

  

无法解析导入org.springframework.beans.Beanutils

但是,当我更改为spring 4.2.2.RELEASE时,它可以正常工作吗?

所以我的问题是,因为4.3.3因为它显示为错误。

2 个答案:

答案 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。