-
<property name="connection.username">root</property> <property name="connection.password">123</property> <property name="connection.driver_class">com.mysql.jdbc.Driver</property> <property name="connection.url">jdbc:mysql:///test?useUnicode=true&characterEncoding=UTF-8</property> <property name="dialect">org.hibernate.dialect.MySQLDialect</property> <property name="show_sql">true</property> <property name="format_sql">true</property> <property name="hbm2ddl.auto">update</property> <property name="hibernate.current_session_context_class">thread</property>查看全部
-
MyEclipse中菜单栏 Preferences->Java->Build Path->User Libraries可以添加自定义的类库查看全部
-
Struts2与Hibernate整合的步骤查看全部
-
Structs2与Hibernate整合查看全部
-
创建实体类 。用户表 。学生表查看全部
-
SSH 中的Struts2与Hibernate 整合 1.后台登录效果 2.工具 MySQL 6.0查看全部
-
javascript查看全部
-
并且把实体类的xml加入主配置文档hibernate中 <mapping resource="地址(之间用 / 区分)"> 运行测试方法生成表结构 configuration config=new Configuration.configure()查看全部
-
配置hibernate.xml时 <hibernate-mapping> <class name="实体类的名字以及实体类的位置" table="表名"> <id name="实体类的属性" type="类型" cloumn="列名"> <generator class="native">--这是主键列 并且是自增的 </id> <property name="列名" type="java.lang.String">--其他的列名 </property> </hibernate-mapping>查看全部
-
配置web.xml filter使用StrutsPrepareAndExecuteFilter /*表示 过滤所有 struts配置中 继承于Struts-default 配置hibernate.cfg.xml hibernate.current_session_context_class thread 配置这个能够使用getCurrentSession方式打开会话查看全部
-
struts2与hibernate 1.创建Struts和hibernate用户库 2.Struts与hibernate的jar包 配置web.xml 创建Struts.xml 配置hibernate.cfg.xml查看全部
-
Struts与hibernate的整合 创建实体类 生成实体映射文件 生成表结构查看全部
-
环境查看全部
-
<hibernate-configuration> <session-factory> <!-- 配置的是数据库的方言 --> <property name="dialect">org.hibernate.dialect.MySQLDialect</property> <property name="connection.url">jdbc:mysql://localhost:3306/test</property> <property name="connection.username">root</property> <property name="connection.password">tianbin123</property> <property name="connection.driver_class">com.mysql.jdbc.Driver</property> <property name="myeclipse.connection.profile">MySQL-DB</property> <!-- 是否把Hibernate运行时的sql语句输出到控制台 --> <property name="show_sql">true</property> <!-- 是否对输出的sql语句进行排版(格式化) --> <property name="format_sql">true</property> <!-- 生成表结构的方式 --> <property name="hbm2ddl.auto">update</property> <!-- 使用getCurrentSession打开会话 --> <property name="hibernate.current_session_context_class">thread</property> </session-factory> </hibernate-configuration>查看全部
-
删除学生资料 <!-- type="chain" 表示链接一个动作,相当于服务器内部转发,只不过转发类型是Action而不是Jsp页面,一定要注意 --> <result name="delete_success" type="chain">Students_query</result>查看全部
举报
0/150
提交
取消