标题:这是个测试hibernate的student类出现了一些问题,
只看楼主
tomjava
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:42
专家分:103
注 册:2011-2-23
结帖率:33.33%
 问题点数:0 回复次数:1 
这是个测试hibernate的student类出现了一些问题,
import org.hibernate.cfg.*;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

import com.xuyihui.*;//引入的是我自己间的包
public class StudentTest {
    public static void main(String[] args)
    {
            Student s =new Student();
            s.setId(11);
            s.setAge(2);
            s.setName("小护航");
            
            Configuration cfg= new Configration();
            SessionFactory sf=cfg.configuration().buildSssionFactory();
            Session session =sf.open()Session();
            session.beginTransaction();
            session.save();
            session.getTransaction().commit();
            session.close();
            sf.close();
        
            
    }

}
 
//Configuration cfg= new Configration();
            SessionFactory sf=cfg.configuration().buildSssionFactory();
            Session session =sf.open()Session();
//import org.hibernate.cfg.*;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
出现错误,特别是为什么会显示我引入的包有问题呢!
下面是错误提示(红线的就是)
搜索更多相关主题的帖子: class 测试 hibernate public import 
2011-04-04 20:11
tomjava
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:42
专家分:103
注 册:2011-2-23
得分:0 
我搞出来了,谢谢大家的关注!
2011-04-05 15:41



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-335629-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.859267 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved