我正在使用spring-social-facebook的spring mvc 3.0。当我调试代码时,行
出错List<Connection<?>> connections = connectionRepository.findConnections(providerId);
以下方法
@RequestMapping(value="/{providerId}", method=RequestMethod.GET)
public String connectionStatus(@PathVariable String providerId,
NativeWebRequest request,
Model model) {...}
和控制器是ConnectController
Eclipse显示
未找到来源
当我将该行保留在try catch块中时,则错误消息为
表达式解析失败;嵌套异常是 org.springframework.expression.spel.SpelEvaluationException: EL1007E:(pos 22):在null
上找不到字段或属性'name'
我在WEB-INF / lib中添加了org.springframework.expression-3.1.0.M2.jar文件。我也尝试使用“Add External Jars ..”。任何帮助将不胜感激。