wtp all in one 的版本是1.0.1教程地址:
http://www.eclipse.org/webtools/community/tutorials/SchoolSchedule/BuildingAScheduleWebApp.html
提示的两个错误如下,不明白什么意思!这个程序不需要其他的什么类库吧,.JETEmitters是个什么东西呢?我的工程名称不是这个阿!1.)Project .JETEmitters is missing required library: 'D:\Tool\Dev\eclipse\plugins\org.eclipse.jst.j2ee.web_0.7.0\runtime\web.jar'2.)The project cannot be built until build path errors are resolved源代码:
package org.eclipse.wtp.sample.classscheule;public class SchoolClass 
{
private String title;
private int startTime;
private int endTime;
private int day;

public SchoolClass(String title, int startTime, int endTime, int day)
{
this.title = title;
this.startTime = startTime;
this.endTime = endTime;
this.day = day;
} public int getDay() {
return day;
} public int getEndTime() {
return endTime;
} public int getStartTime() {
return startTime;
} public String getTitle() {
return title;
}}