| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 542 人关注过本帖
标题:这是个测试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
快速回复:这是个测试hibernate的student类出现了一些问题,
数据加载中...
 
   



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

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