最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JavaWeb搭建網(wǎng)上圖書商城畢業(yè)設(shè)計

 更新時間:2015年11月03日 12:22:10   投稿:lijiao  
這篇文章主要介紹了JavaWeb搭建網(wǎng)上圖書商城框架,特別適合正在為網(wǎng)上商城畢業(yè)設(shè)計煩惱的同學(xué),需要的朋友可以參考下

  以前一直接觸.net相關(guān)的web開發(fā),現(xiàn)在猛然使用javaWeb還是很不習(xí)慣,就連搭個框架也是第一次。

一、談?wù)勴?xiàng)目架構(gòu)
  一開始接觸.net相關(guān)的開發(fā)所以對于.net相關(guān)的開發(fā)還是比較熟悉的,但我在學(xué)校學(xué)的java方向的開發(fā),而我打算把這兩種平臺結(jié)合起來,使用java做后臺也就是服務(wù)提供者,將所有業(yè)務(wù)邏輯在java平臺完成并使用我比較熟悉的.net做Web端的開發(fā)。這樣一來安卓app,web端就都有了??蛻舳私y(tǒng)一通過分布式框架調(diào)用服務(wù)。找了很久最終選擇了Hprose,這一輕量級、跨語言、跨平臺、無侵入式、高性能動態(tài)遠(yuǎn)程對象調(diào)用引擎庫。之所以選擇它一方面是因?yàn)閷W(xué)習(xí)成本低,另一方面是它的跨平臺調(diào)用非常輕松高效,因?yàn)槲覀円褂?net做web需要調(diào)用java發(fā)布的服務(wù)!大概看了一下Hprose的文檔,發(fā)現(xiàn)使用內(nèi)置的HproseServlet發(fā)布服務(wù)開發(fā)速度比較快也比較簡單,所以準(zhǔn)備使用這種方式發(fā)布服務(wù)??蓡栴}來了,傳統(tǒng)的ssh架構(gòu)感覺有點(diǎn)重了,準(zhǔn)備使用.net開發(fā)web端所以感覺沒有必要整合Struts,于是就是hibernate+spring+hprose這種架構(gòu)。

二、數(shù)據(jù)庫設(shè)計

  一個小網(wǎng)上書城,所以設(shè)計的還有欠缺,以實(shí)用為主,主要是練手java開發(fā)~~。所以使用了navicat簡單設(shè)計了一下,不過沒有設(shè)計表關(guān)聯(lián),取而代之的是后來一個一個添加關(guān)系的,發(fā)現(xiàn)這個設(shè)計工具有點(diǎn)問題,圖示:

其實(shí)表關(guān)聯(lián)一看就能看出來~~,接下來就是hibernate一些映射了,同樣也是使用插件生成model和映射文件

稍作修改就是這樣--

三、spring3+hibernate4配置
  因?yàn)閙odel和映射文件是自動生成所以稍加配置就好,需要注意的是復(fù)合主鍵的設(shè)置,自動生成的會把復(fù)合主鍵對應(yīng)一個復(fù)合模型。如商品評論表的復(fù)合主鍵類型

package com.book.model;
// Generated 2015-11-2 9:07:06 by Hibernate Tools 4.0.0.Final

import java.util.Date;

/**
 * CommentsId generated by hbm2java
 */
public class CommentsPk implements java.io.Serializable {

  private Book book;
  private User user;
  private Date commentsDate;

  public CommentsPk() {
  }

  public CommentsPk(Book book, User user, Date commentsDate) {
    this.book = book;
    this.user = user;
    this.commentsDate = commentsDate;
  }

  public Book getBook() {
    return this.book;
  }

  public void setBook(Book book) {
    this.book = book;
  }

  public User getUser() {
    return this.user;
  }

  public void setUser(User user) {
    this.user = user;
  }

  public Date getCommentsDate() {
    return this.commentsDate;
  }

  public void setCommentsDate(Date commentsDate) {
    this.commentsDate = commentsDate;
  }

  public boolean equals(Object other) {
    if ((this == other))
      return true;
    if ((other == null))
      return false;
    if (!(other instanceof CommentsPk))
      return false;
    CommentsPk castOther = (CommentsPk) other;

    return ((this.getBook() == castOther.getBook()) || (this.getBook() != null && castOther.getBook() != null
        && this.getBook().equals(castOther.getBook())))
        && ((this.getUser() == castOther.getUser()) || (this.getUser() != null && castOther.getUser() != null
            && this.getUser().equals(castOther.getUser())))
        && ((this.getCommentsDate() == castOther.getCommentsDate())
            || (this.getCommentsDate() != null && castOther.getCommentsDate() != null
                && this.getCommentsDate().equals(castOther.getCommentsDate())));
  }

  public int hashCode() {
    int result = 17;

    result = 37 * result + (getBook() == null ? 0 : this.getBook().hashCode());
    result = 37 * result + (getUser() == null ? 0 : this.getUser().hashCode());
    result = 37 * result + (getCommentsDate() == null ? 0 : this.getCommentsDate().hashCode());
    return result;
  }

}

商品評論表模型

package com.book.model;
// Generated 2015-10-30 14:56:21 by Hibernate Tools 4.0.0.Final

import java.sql.Date;

/**
 * Comments generated by hbm2java
 */
public class Comments implements java.io.Serializable {

  private String content;
  private String pic;
  private Integer client;
  private CommentsPk id;
  public Comments()
  {
    
  }
  public String getContent() {
    return content;
  }
  public void setContent(String content) {
    this.content = content;
  }
  public String getPic() {
    return pic;
  }
  public void setPic(String pic) {
    this.pic = pic;
  }
  public Integer getClient() {
    return client;
  }
  public void setClient(Integer client) {
    this.client = client;
  }
  public CommentsPk getId() {
    return id;
  }
  public void setId(CommentsPk id) {
    this.id = id;
  }
  public Comments(String content, String pic, Integer client, CommentsPk id) {
    super();
    this.content = content;
    this.pic = pic;
    this.client = client;
    this.id = id;
  }
  
}

相應(yīng)的Hibernate 映射文件:

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<!-- Generated 2015-10-30 14:56:21 by Hibernate Tools 4.0.0.Final -->
<hibernate-mapping>
  <class name="com.book.model.Comments" table="comments" catalog="bookstore">
    <composite-id name="id" class="com.book.model.CommentsPk">
      <key-many-to-one name="book" class="com.book.model.Book">
        <column name="BookID" />
      </key-many-to-one>
      <key-many-to-one name="user" class="com.book.model.User">
        <column name="UserID" />
      </key-many-to-one>
      <key-property name="commentsDate" type="timestamp">
        <column name="CommentsDate" length="19" />
      </key-property>
    </composite-id>
    <property name="content" type="string">
      <column name="Content" length="65535" />
    </property>
    <property name="pic" type="string">
      <column name="Pic" length="65535" />
    </property>
    <property name="client" type="java.lang.Integer">
      <column name="Client" />
    </property>
  </class>
</hibernate-mapping>

因?yàn)樯唐吩u論表有兩個是外鍵所以使用了key-many-to-one標(biāo)簽。

由于采用spring3.2+hibernate4.1所以得到sessionFactory的方式只限于sessionFactory.getCurrentSession();但是必須開啟事物:   

 <bean id="transactionManager"
    class="org.springframework.orm.hibernate4.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory" />
  </bean>
  
  <!-- 事務(wù)的傳播特性 -->
  <tx:advice id="txadvice" transaction-manager="transactionManager">
    <tx:attributes>
      <tx:method name="add*" propagation="REQUIRED" />
      <tx:method name="delete*" propagation="REQUIRED" />
      <tx:method name="modify*" propagation="REQUIRED" />
      
       <!--hibernate4必須配置為開啟事務(wù) 否則 getCurrentSession()獲取不到-->
      <tx:method name="*" propagation="REQUIRED" read-only="true" />
    </tx:attributes>
  </tx:advice>

以上都是我配置的時候出現(xiàn)問題的地方。下面是spring配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
  xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd">
    
    <!-- 啟用spring注解支持 -->
  <context:annotation-config />
  
  <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> 
    <property name="driverClassName" value="com.mysql.jdbc.Driver" />
    <property name="url"
      value="jdbc:mysql://127.0.0.1/bookstore?useUnicode=true&amp;characterEncoding=UTF-8" />
    <property name="username" value="root" />
    <property name="password" value="yangyang" />
  </bean>
 
  <!-- 可追加配置二級緩存 -->
  <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean" >
    <property name="dataSource" ref="dataSource"/>
    <property name="mappingDirectoryLocations">
       <list>
         <value>classpath:config</value>
       </list>
    </property>
    <property name="hibernateProperties">
      <props>
        <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
        <prop key="hibernate.show_sql">true</prop>
        <prop key="hibernate.hbm2ddl.auto">update</prop>
        <prop key="hibernate.temp.use_jdbc_metadata_defaults">false</prop>
        <prop key="current_session_context_class">thread</prop>
      </props>
    </property>
  </bean>
  

    <!-- 配置事務(wù)管理器 -->
  <bean id="transactionManager"
    class="org.springframework.orm.hibernate4.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory" />
  </bean>
  
  <!-- 事務(wù)的傳播特性 -->
  <tx:advice id="txadvice" transaction-manager="transactionManager">
    <tx:attributes>
      <tx:method name="add*" propagation="REQUIRED" />
      <tx:method name="delete*" propagation="REQUIRED" />
      <tx:method name="modify*" propagation="REQUIRED" />
      
       <!--hibernate4必須配置為開啟事務(wù) 否則 getCurrentSession()獲取不到-->
      <tx:method name="*" propagation="REQUIRED" read-only="true" />
    </tx:attributes>
  </tx:advice>

  <!-- 那些類那些方法使用事務(wù) -->
  <aop:config>
   <!-- 只對業(yè)務(wù)邏輯層實(shí)施事務(wù) -->
    <aop:pointcut id="allManagerMethod"
      expression="execution(* com.book.test.*.*(..))" />
    <aop:advisor pointcut-ref="allManagerMethod" advice-ref="txadvice" />
  </aop:config>
    <bean name="basedao" class="com.book.dao.impl.AdressDao" />
    <bean name="orderdao" class="com.book.dao.impl.OrderDao" />
</beans>

一切就緒之后我們使用servlet測試:

<servlet>
  <servlet-name>test</servlet-name>
  <servlet-class>com.book.test.Test</servlet-class>
 </servlet>
 <servlet-mapping>
  <servlet-name>test</servlet-name>
  <url-pattern>/index</url-pattern>
 </servlet-mapping>
   
 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    BeanFactory factor = WebApplicationContextUtils.getRequiredWebApplicationContext(request.getSession().getServletContext());
    OrderDao dao= factor.getBean(OrderDao.class);
    
    Object[] list= dao.get(1).getOrderitems().toArray();
    System.out.println(((Orderitem)list[0]).getOrdercount());    
  }

因?yàn)闆]有使用structs我們需要自己查找spring的BeanFactory來獲得dao bean 這也是需要注意的地方,糾結(jié)好久。

運(yùn)行結(jié)果:

 成功加載訂單表訂單1項(xiàng)目訂購數(shù)量。

 畢竟第一次使用java開發(fā)這類項(xiàng)目,慢慢學(xué)習(xí)吧,希望大家可以喜歡JavaWeb搭建的網(wǎng)上圖書商城框架,對大家的學(xué)習(xí)有所幫助。

相關(guān)文章

  • idea2023遠(yuǎn)程調(diào)試springboot的過程詳解

    idea2023遠(yuǎn)程調(diào)試springboot的過程詳解

    這篇文章主要介紹了idea2023遠(yuǎn)程調(diào)試,本文通過圖文并茂的形式給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2023-08-08
  • String.intern()作用與常量池關(guān)系示例解析

    String.intern()作用與常量池關(guān)系示例解析

    這篇文章主要為大家介紹了String.intern()作用與常量池關(guān)系示例解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-08-08
  • MyBatis-plus中的模糊查詢解讀

    MyBatis-plus中的模糊查詢解讀

    這篇文章主要介紹了MyBatis-plus中的模糊查詢解讀,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-05-05
  • 詳解Spring Cloud 跨服務(wù)數(shù)據(jù)聚合框架

    詳解Spring Cloud 跨服務(wù)數(shù)據(jù)聚合框架

    這篇文章主要介紹了詳解Spring Cloud 跨服務(wù)數(shù)據(jù)聚合框架,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-03-03
  • 聊聊MultipartFile與File的一些事兒

    聊聊MultipartFile與File的一些事兒

    這篇文章主要介紹了MultipartFile與File的一些事兒,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2021-07-07
  • Java中null的意義及其使用時的注意事項(xiàng)說明

    Java中null的意義及其使用時的注意事項(xiàng)說明

    這篇文章主要介紹了Java中null的意義及其使用時的注意事項(xiàng)說明,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2023-09-09
  • Java實(shí)現(xiàn)文件上傳下載以及查看功能

    Java實(shí)現(xiàn)文件上傳下載以及查看功能

    這篇文章主要為大家詳細(xì)介紹了java如何實(shí)現(xiàn)文件上傳和下載以及查看功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-03-03
  • java用list集合存儲學(xué)生信息并算出成績平均值操作

    java用list集合存儲學(xué)生信息并算出成績平均值操作

    這篇文章主要介紹了java用list集合存儲學(xué)生信息并算出成績平均值操作,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-08-08
  • Java實(shí)現(xiàn)排列組合算法的兩種方案

    Java實(shí)現(xiàn)排列組合算法的兩種方案

    Java排列組合算法是一種用于生成所有可能的排列和組合的算法,在Java中,可以使用遞歸或迭代的方式實(shí)現(xiàn)排列組合算法,本文給大家介紹了Java實(shí)現(xiàn)排列組合算法的兩種方案,需要的朋友可以參考下
    2024-04-04
  • Java計算百分比的各種方法總結(jié)

    Java計算百分比的各種方法總結(jié)

    這篇文章主要給大家介紹了關(guān)于Java計算百分比的各種方法,要計算百分比并保留兩位小數(shù),首先需要明確計算公式和java語言的數(shù)學(xué)計算方法,文中通過代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2024-06-06

最新評論

阳山县| 抚州市| 岚皋县| 洪雅县| 卢氏县| 曲沃县| 南召县| 信宜市| 攀枝花市| 京山县| 吴川市| 章丘市| 佳木斯市| 南投市| 德化县| 黎川县| 黔东| 罗江县| 绥芬河市| 铁岭市| 杂多县| 彩票| 磐石市| 华蓥市| 阿鲁科尔沁旗| 饶河县| 社会| 万安县| 博爱县| 台北县| 通山县| 介休市| 凭祥市| 新平| 邵武市| 永年县| 旬阳县| 铜陵市| 石棉县| 台安县| 蕉岭县|