-
项目分层 1.实体层 2.数据库层 3.接口层 4.借口实现层 (模型层) 5.动作层(控制层) 6.Jsp页面(视图层)查看全部
-
第二章 用户登陆模块 (1)项目分层 (2)创建MyHibernateSessionFactory (3)设计用户接口和实现类 (4)设计所有Action父类 (5)设计用户Action类 (6)页面调用 (7)显示相应的报错信息查看全部
-
<mapping resources="entity/Students.hbm.xml"/> <mapping resources="entity/Users.hbm.xml"/>查看全部
-
使用SchemaExport生成表结构查看全部
-
生成实体类的映射文件 (1)生成Users.hbm.xml文档 (2)生成Student.hbm.xml文档查看全部
-
创建实体类 (1)用户表 (2)学生表查看全部
-
配置hibernate.cfg.xml文件 <property name="connection.username">root</property> <property name="connection.password"></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> <!-- 使用getCurrentSession方式打开会话 -->查看全部
-
接着;创建struts.xml文档 最后;配置hibernate.cfg.xml查看全部
-
配置web.xml文件 <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> <!-- /* 表示过滤所有请求> </filter-mapping>查看全部
-
更健康查看全部
-
老师发表查看全部
-
测试查看全部
-
天天查看全部
-
Struts2与hibernate整合 (1)创建struts2和hibernate用户类库 (2)导入struts2与hibernate的jar包 (3)配置web.xml (4)创建struts.xml (5)配置hibernate.cfg.xml查看全部
-
第一张:Struts2与Hibernate整合 Struts2 + Hibernate4 实现的简单的CRUD案例 实现功能: (1)后台登录 (2)学生表的增删改查 开发环境struts2.3.4 + hibernate4.2.4 + MySQL6.0查看全部
举报
0/150
提交
取消