A. jsP手動配置Struts+Hibernate+Spring要領及步驟
為什麼要手動配置呢,現在不都是快速開發嗎。
ssh框架整合實例子-配置文件
主要配置文件如下:
1.web.xml:
配置actionservlet類和映射
配置Listener,載入spring配置
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>
org.apache.struts.action.ActionServlet
</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>
/WEB-INF/struts-config.xml
</param-value>
</init-param>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
2. struts-config.xml
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
"http://struts.apache.org/dtds/struts-config_1_3.dtd">
<struts-config>
<form-beans>
<form-bean name="userForm"
type="com.yanek.demo.ssh.bean.UserForm">
</form-bean>
</form-beans>
<global-forwards>
<forward name="error" path="/error.jsp"></forward>
</global-forwards>
<action-mappings>
<!--
<action path="/user" name="userForm"
type="com.yanek.demo.ssh.action.UserAction"
scope="request" validate="true" input="/register.jsp">
<forward name="success" path="/reg_success.jsp" />
</action>
-->
<action path="/user" name="userForm"
type="org.springframework.web.struts.DelegatingActionProxy"
scope="request" validate="false" input="/register.jsp"
parameter="method">
<forward name="success" path="/reg_success.jsp" />
<forward name="list" path="/list.jsp" />
</action>
</action-mappings>
<message-resources parameter="ApplicationResources" />
</struts-config>
3. applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<!-- 定義數據源 -->
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource"
destroy-method="close">
<!-- 指定連接資料庫驅動 -->
<property name="driverClassName"
value="com.microsoft.jdbc.sqlserver.SQLServerDriver" />
<!-- 指定連接資料庫url -->
<property name="url"
value="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=ssh"
/>
<!-- 指定連接資料庫用戶名,密碼為空 -->
<property name="username" value="sa" />
<property name="password" value="" />
</bean>
<!-- 定義Hibernate的sessionFactory -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<!-- 指定數據源 -->
<property name="dataSource" ref="dataSource" />
<!-- 指定Hibernate映射文件 -->
<property name="mappingResources">
<list>
<value>com/yanek/demo/ssh/vo/User.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<!-- 指定使用方言 -->
<prop key="hibernate.dialect">
org.hibernate.dialect.SQLServerDialect
</prop>
<!-- 是否在控制台輸出sql語句 -->
<prop key="show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
<prop key="hibernate.jdbc.batch_size">20</prop>
</props>
</property>
</bean>
<!-- 定義事務管理 -->
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<!-- 定義事務管理攔截器 -->
<bean id="transactionInterceptor"
class="org.springframework.transaction.interceptor.TransactionInterceptor">
<property name="transactionManager" ref="transactionManager" />
<property name="transactionAttributes">
<props>
<prop key="get*">PROPAGATION_REQUIRED,readOnly</prop>
<prop key="*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
<!-- 定義代理自動管理事務 -->
<bean id="ProxyCreator"
class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
<!-- 指定需要Spring管理事務的Bean -->
<property name="beanNames">
<list>
<value>userService</value>
</list>
</property>
<!-- 調用事務管理攔截器 -->
<property name="interceptorNames">
<list>
<value>transactionInterceptor</value>
</list>
</property>
</bean>
<!-- 把DAO注入給Session工廠 -->
<bean id="userDAO" class="com.yanek.demo.ssh..UserDAOImpl">
<property name="sessionFactory">
<ref local="sessionFactory" />
</property>
</bean>
<!-- 把Service注入給DAO -->
<bean id="userService"
class="com.yanek.demo.ssh.service.UserServiceImpl">
<property name="userDAO" ref="userDAO"></property>
</bean>
<!-- 把Action注入給Service -->
<bean name="/user"
class="com.yanek.demo.ssh.action.UserAction">
<property name="userService" ref="userService"></property>
</bean>
</beans>
B. 怎樣在把jsp頁面中用戶輸入的數據的通過hibernate存入到資料庫
這個問題步驟比較多
首先你要通過頁面的表單提交到後台 後台或者直接用servlet 或者用回struts 或者用Springmvc 接受到答前台的參數
你想用hibernate來將數據存到資料庫 你要引入hibernate的jar包 然後配置好hibernate的配置文件和映射文件 然後調用hibernate的保存的api即可。。。。。。。。。。。。
不知道這個基本的操作流程你是否滿意
C. Hibernate如何使用HQL實現JSP頁面分頁查詢和上下頁的翻頁
Query query = s.createQuery(hsql);
query.setFirstResult(firstRow);
query.setMaxResults(maxRow);
List list = query.list();
return list;
這樣~ 通過firstRow跟maxRow進行限制要返回那些數據給jsp。
每次你點上下頁的時候 都把頁碼給傳到後台~專 然後後屬台根據每頁顯示的條數 頁碼 計算是firstRow maxRow是第幾條就ok了~
D. 怎麼用hibernate在jsp頁面顯示資料庫數據
jsp頁面顯示資料庫數據,後台hibernate操作方法:
在用hibernate中通過queryAllEmp()獲取資料庫中員工信息:
public List<Emp> queryAllEmp();//查詢全部數據的方法
在介面實現類EmpDaoImp類中實現queryAllEmp()方法,實現類EmpDaoImp中queryAllEmp()方法的代碼如下:
public List<Emp> queryAllEmp() {
List<Emp> list =session.createQuery("from Emp").list();//查詢全部
tr.commit();//提交事務
return list;
}
頁面跳轉到ShowAllEmpServlet,該類是一個Servlet,用來顯示全部員工信息,ShowAllEmpServlet的代碼如下:
package com.cn.service;
public class ShowAllEmpServlet extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
this.doPost(request, response);//調用doPost方法
out.flush();
out.close();
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
List<Emp> list = new ArrayList<Emp>();
EmpDao = new EmpDaoImp();
list = .queryAllEmp();//調用實現類的查詢全部方法
request.setAttribute("list", list);//把查詢結果放入request對象中
request.getRequestDispatcher("showAllEmp.jsp").forward(request, response);//轉發到現實全部的頁面
out.flush();
out.close();
}
}