我不是 JSTL 和表达式语言的专家,所以我的问题可能很愚蠢......
我正在使用 Spring MVC,在我的控制器中我有:
@ModelAttribute("export_types")
public ExportType[] getExportTypes() {
return edService.getTypes();
}
ExportType
是一个自定义界面:
public interface ExportType {
String getName();
//...
}
在我的页面中,我有:
<c:forEach var="item" items="${export_types}">
<tr>
<td><input type="checkbox" value="${item.name}"></td>
<td>${item.name}</td>
</tr>
</c:forEach>
但是当我运行我的网络应用程序时,我得到了这个期望:javax.el.PropertyNotFoundException: Property 'name' not found on type java.lang.String
奇怪的是异常说on type java.lang.String
而不是 type ExportType
。所以我的问题是:我不能将表达式语言与接口一起使用吗?
注1
edService.getTypes()
返回一个ExportType[]
包含接口具体实现的数组。
为了清楚起见,我有一个实现ExportType
接口的抽象类。具体类型继承自:
public abstract class AbstractExportType implements ExportType {
protected String name;
protected AbstractExportType() {
this.name = this.getClass().getSimpleName();
}
@Override
String getName(){
return this.name;
}
//...
}
笔记2
转发到 export.jsp 的控制器方法很简单:
@RequestMapping(value = "/export", method = RequestMethod.GET)
public String getExportForm() {
return "jsp/export";
}