当前位置: 代码迷 >> J2EE >> usebean标签undefined type 未定义类型,该如何解决
  详细解决方案

usebean标签undefined type 未定义类型,该如何解决

热度:93   发布时间:2016-04-22 01:41:10.0
usebean标签undefined type 未定义类型
<jsp:useBean id="category" class="businessBean.GetCategory" scope="session"/>
  <% category.getCategory(); %>
class那块显示undefined type 未定义类型businessBean.GetCategory

------解决方案--------------------
category.getCategory()返回值类型是什么? string? 如果你要显示这个数据,用out.print();试一下
  相关解决方案