multiple markers at this line问题
multiplemarkersatthisline-implementscom.xzj.hotel.dao.HotelDAO.getAll-ThemethodgetAll...
multiple markers at this line
- implements com.xzj.hotel.dao.HotelDAO.getAll
- The method getAll() of type HotelDAOjdbcImpl must override a superclass
代码:
package com.xzj.hotel.impl;
import java.util.List;
//import com.hang.book.dao.CriteriaCustomer;
import com.xzj.hotel.dao.HotelDAO;
import com.xzj.hotel.dao.DAO;
import com.xzj.hotel.domain.Hotel;
public class HotelDAOjdbcImpl extends DAO<Hotel> implements HotelDAO{
@Override //查询
public List<Hotel> getAll() {
String sql = "SELECT id, kind, customerName, principal, price, cash_pledge FROM room ";
return getForList(sql);
}
@Override//数据库添加
public void save(Hotel toy) {
/*String sql = "INSERT INTO toy(toy_name, price, number, count_price, stock_time, damaged_condition, scrap_condition) VALUES(?,?,?,?,?,?,?)";
update(sql,toy.getToy_name(),toy.getPrice(),toy.getNumber(),toy.getCount_price(),toy.getStock_time(),toy.getDamaged_condition(),toy.getScrap_condition());
*/}
@Override //查询某ID的各个数据
public Hotel get(Integer toy_id) {
String sql = "SELECT toy_id, toy_name, price, number, count_price, stock_time, damaged_condition, scrap_condition FROM toy WHERE toy_id = ?";
return get(sql, toy_id);
}
@Override //删除某ID的数据
public void delete(Integer toy_id) {
String sql = "DELETE FROM toy WHERE toy_id = ?";
update(sql, toy_id);
}
@Override
public long getCountWithName(String toy_name) { //getCountWithName(String name)获取name 在数据库中是否存在
String sql = "SELECT count(toy_id) FROM toy WHERE toy_name = ?";
return getForValue(sql, toy_name);
}
@Override
public void update(Hotel toy) { //数据库更新
/* String sql = "UPDATE toy SET toy_name = ?, price = ?, number = ?, count_price = ?, stock_time = ?, damaged_condition = ?, scrap_condition = ? WHERE toy_id = ?";
update(sql,toy.getToy_name(),toy.getPrice(),toy.getNumber(),toy.getCount_price(),toy.getStock_time(),toy.getDamaged_condition(),toy.getScrap_condition(),toy.getToy_id());
*/} 展开
- implements com.xzj.hotel.dao.HotelDAO.getAll
- The method getAll() of type HotelDAOjdbcImpl must override a superclass
代码:
package com.xzj.hotel.impl;
import java.util.List;
//import com.hang.book.dao.CriteriaCustomer;
import com.xzj.hotel.dao.HotelDAO;
import com.xzj.hotel.dao.DAO;
import com.xzj.hotel.domain.Hotel;
public class HotelDAOjdbcImpl extends DAO<Hotel> implements HotelDAO{
@Override //查询
public List<Hotel> getAll() {
String sql = "SELECT id, kind, customerName, principal, price, cash_pledge FROM room ";
return getForList(sql);
}
@Override//数据库添加
public void save(Hotel toy) {
/*String sql = "INSERT INTO toy(toy_name, price, number, count_price, stock_time, damaged_condition, scrap_condition) VALUES(?,?,?,?,?,?,?)";
update(sql,toy.getToy_name(),toy.getPrice(),toy.getNumber(),toy.getCount_price(),toy.getStock_time(),toy.getDamaged_condition(),toy.getScrap_condition());
*/}
@Override //查询某ID的各个数据
public Hotel get(Integer toy_id) {
String sql = "SELECT toy_id, toy_name, price, number, count_price, stock_time, damaged_condition, scrap_condition FROM toy WHERE toy_id = ?";
return get(sql, toy_id);
}
@Override //删除某ID的数据
public void delete(Integer toy_id) {
String sql = "DELETE FROM toy WHERE toy_id = ?";
update(sql, toy_id);
}
@Override
public long getCountWithName(String toy_name) { //getCountWithName(String name)获取name 在数据库中是否存在
String sql = "SELECT count(toy_id) FROM toy WHERE toy_name = ?";
return getForValue(sql, toy_name);
}
@Override
public void update(Hotel toy) { //数据库更新
/* String sql = "UPDATE toy SET toy_name = ?, price = ?, number = ?, count_price = ?, stock_time = ?, damaged_condition = ?, scrap_condition = ? WHERE toy_id = ?";
update(sql,toy.getToy_name(),toy.getPrice(),toy.getNumber(),toy.getCount_price(),toy.getStock_time(),toy.getDamaged_condition(),toy.getScrap_condition(),toy.getToy_id());
*/} 展开
1个回答
展开全部
使用Eclipse 进行项目开发,在实现类中的方法前面如果添加@Override就提示“Multiple markers at this line”的错误,问题描述如下
Multiple markers at this line
- The method getStudentByID(String) of type StudentBeanImpl must override a superclass method
- implements mgr.jc.student.service.IStudentBean.getStudentByID
出现上述问题的原因:JDK1.5不支持这种写法。实现接口方法需要重写抽象方法。
解决上述问题的方法如下:
方法1.选择Eclipse的Window→Preferences→Java→Compiler,把Compiler compliance level从1.5改成1.6。
方法2.右击project选择最后一个properties选择左侧的java compiler,勾选里面的框框,把java编辑器版本都改成1.6。
方法3.右击project下的 JRE System Library[JavaSE-1.5]→Properties,Execution environment 选择“JavaSE-1.6(JDK1.6.0_10)”,点击确定即可。
上述3种方法都能解决题目中提到的问题,可以根据自己的习惯选择相应的解决方法。
Multiple markers at this line
- The method getStudentByID(String) of type StudentBeanImpl must override a superclass method
- implements mgr.jc.student.service.IStudentBean.getStudentByID
出现上述问题的原因:JDK1.5不支持这种写法。实现接口方法需要重写抽象方法。
解决上述问题的方法如下:
方法1.选择Eclipse的Window→Preferences→Java→Compiler,把Compiler compliance level从1.5改成1.6。
方法2.右击project选择最后一个properties选择左侧的java compiler,勾选里面的框框,把java编辑器版本都改成1.6。
方法3.右击project下的 JRE System Library[JavaSE-1.5]→Properties,Execution environment 选择“JavaSE-1.6(JDK1.6.0_10)”,点击确定即可。
上述3种方法都能解决题目中提到的问题,可以根据自己的习惯选择相应的解决方法。
追问
这个方法我早看到了,只不过现在我都用到1.7的版本了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |