我从svn检查了一个项目。该项目最初是使用UI组件(拖放)在Netbeans 6.1上构建的。我还看到所有的网页都是使用JSP构建的。他们使用玻璃鱼2.我在Netbeans 6.9上打开它。当我打开它然后我得到服务器丢失错误。我通过添加玻璃鱼来解决它3.然后在代码中我得到了包丢失错误(包不存在)在以下导入
import com.sun.data.provider.impl.CachedRowSetDataProvider;
import com.sun.rave.web.ui.appbase.AbstractPageBean;
import com.sun.sql.rowset.CachedRowSetXImpl;
import com.sun.webui.jsf.component.Calendar;
import com.sun.webui.jsf.model.DefaultTableDataProvider;
import com.sun.webui.jsf.model.SingleSelectOptionsList;
我谷歌并发现更改了sun-web.xml中的行
in the sun-web.xml change
<class-loader delegate="true"/>
to
<class-loader delegate="false"/>
我做到了。但什么都没发生。然后我尝试清理并构建项目,但后来我收到以下错误
D:\Office Work\eAudit Prototype\nbproject\build-impl.xml:663: Warning: Could
not find file D:\Office Work\eAudit Prototype\${libs.jsf12-support.classpath} to
copy.
BUILD FAILED (total time: 3 seconds)
如何解决这些错误,以便我可以使用玻璃鱼3在netbeans 6.9上运行该项目。?我在想使用jsf 2.0。我可以将它与现有项目一起使用吗? 感谢。