hbnutil.java

来自「购物车程序:主要用Struts+Hibernate框架实现」· Java 代码 · 共 19 行

JAVA
19
字号
package com.rmeng.shoppingCart.util;import org.hibernate.Session;import org.hibernate.SessionFactory;import org.hibernate.cfg.Configuration;public class HbnUtil {	static SessionFactory sf=null;	public static Session getSession(){		 SessionFactory sf= new Configuration()        .configure()        .buildSessionFactory();		if(sf!=null){		  return sf.openSession();		}		return null;	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?