package ssh;import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.LockMode;
import org.springframework.context.ApplicationContext;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;/**
 * A data access object (DAO) providing persistence and search support for About
 * entities. Transaction control of the save(), update() and delete() operations
 * can directly support Spring container-managed transactions or they can be
 * augmented to handle user-managed Spring transactions. Each of these methods
 * provides additional information for how to configure it for the desired type
 * of transaction control.
 * 
 * @see ssh.About
 * @author MyEclipse Persistence Tools
 */public class AboutDAO extends HibernateDaoSupport {
private static final Log log = LogFactory.getLog(AboutDAO.class);
// property constants
public static final String NAME = "name";
public static final String PASS = "pass"; protected void initDao() {
// do nothing
} public void save(About transientInstance) {
log.debug("saving About instance");
try {
getHibernateTemplate().save(transientInstance);
log.debug("save successful");
} catch (RuntimeException re) {
log.error("save failed", re);
throw re;
}
}
       
        还有很多方法,这里省略
}我不知道在struts2+spring2+hibernate3中,这个dao是我在myeclipse下生成的,由spring管理。可刚生成就出现这里的情况。下面是错误提示!
此行的多个标记
- 无法解析类型 org.springframework.dao.support.DaoSupport。从必需
 的 .class 文件间接引用了它
- 类型 AboutDAO 的层次结构不一致
struts2+spring2+hibernate3经常有包冲突发生,不知道我这情况是不,要怎样才能解决呀,,大伙帮帮忙好吗!!!谢谢啦