基於註解的簡單SSH保存用戶小案例

来源:https://www.cnblogs.com/gdwkong/archive/2018/02/27/8481496.html
-Advertisement-
Play Games

需求:搭建SSH框架環境,使用註解進行相關的註入(實體類的註解,AOP註解、DI註入),保存用戶信息 效果: 一、導依賴包 二、項目的目錄結構 三、web.xml配置 四、applicationContext.xml配置 五、log4j.properties配置 六、頁面代碼 index.jsp s ...


需求:搭建SSH框架環境,使用註解進行相關的註入(實體類的註解,AOP註解、DI註入),保存用戶信息

效果:

一、導依賴包

二、項目的目錄結構

三、web.xml配置

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
 3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4          xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
 5          version="3.1">
 6 
 7     <!--懶載入過濾器,解決懶載入問題-->
 8     <filter>
 9         <filter-name>openSession</filter-name>
10         <filter-class>org.springframework.orm.hibernate5.support.OpenSessionInViewFilter</filter-class>
11     </filter>
12     <filter-mapping>
13         <filter-name>openSession</filter-name>
14         <url-pattern>*.action</url-pattern>
15     </filter-mapping>
16 
17     <!-- struts2的前端控制器 -->
18     <filter>
19         <filter-name>struts</filter-name>
20         <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
21     </filter>
22     <filter-mapping>
23         <filter-name>struts</filter-name>
24         <url-pattern>/*</url-pattern>
25     </filter-mapping>
26 
27     <!-- spring 創建監聽器 -->
28     <listener>
29         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
30     </listener>
31 
32     <context-param>
33         <param-name>contextConfigLocation</param-name>
34         <param-value>classpath:applicationContext.xml</param-value>
35     </context-param>
36 
37 </web-app>

四、applicationContext.xml配置

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <beans xmlns="http://www.springframework.org/schema/beans"
 3        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4        xmlns:tx="http://www.springframework.org/schema/tx"
 5        xmlns:contex="http://www.springframework.org/schema/context"
 6        xsi:schemaLocation="http://www.springframework.org/schema/beans
 7         http://www.springframework.org/schema/beans/spring-beans.xsd
 8         http://www.springframework.org/schema/tx
 9         http://www.springframework.org/schema/tx/spring-tx.xsd
10         http://www.springframework.org/schema/context
11         http://www.springframework.org/schema/context/spring-context.xsd">
12 
13     <!-- 打開註解掃描開關 -->
14     <contex:component-scan base-package="com.pri"/>
15 
16     <!-- 以下是屬於hibernate的配置 -->
17     <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
18         <property name="driverClass" value="com.mysql.jdbc.Driver"/>
19         <property name="jdbcUrl" value="jdbc:mysql:///ssh_demo1?useSSL=false"/>
20         <property name="user" value="root"/>
21         <property name="password" value=""/>
22     </bean>
23 
24     <bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
25         <!--1、核心配置-->
26         <property name="dataSource" ref="dataSource"/>
27 
28         <!-- 2、可選配置-->
29         <property name="hibernateProperties">
30             <props>
31                 <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
32                 <prop key="hibernate.show_sql">true</prop>
33                 <prop key="hibernate.format_sql">true</prop>
34                 <prop key="hibernate.hbm2ddl.auto">update</prop>
35             </props>
36         </property>
37         <!-- 3、掃描映射文件 -->
38         <property name="packagesToScan" value="com.pri.domain"></property>
39     </bean>
40 
41     <!--開啟事務控制-->
42     <bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
43         <property name="sessionFactory" ref="sessionFactory"></property>
44     </bean>
45     <tx:annotation-driven transaction-manager= "transactionManager"/>
46 </beans>

五、log4j.properties配置

#設置日誌記錄到控制台的方式
log4j.appender.std=org.apache.log4j.ConsoleAppender
#out以黑色字體輸出,err以紅色字體輸出
log4j.appender.std.Target=System.err
log4j.appender.std.layout=org.apache.log4j.PatternLayout
log4j.appender.std.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %5p %c{1}:%L - %m%n
#設置日誌記錄到文件的方式
log4j.appender.file=org.apache.log4j.FileAppender
#日誌文件路徑文件名
log4j.appender.file.File=mylog.log
#日誌輸出的格式
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
#日誌輸出的級別,以及配置記錄方案,級別:error > warn > info>debug>trace
log4j.rootLogger=info, std, file    

六、頁面代碼

index.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
  <head>
    <title>$Title$</title>
  </head>
  <body>
  <h3>添加客戶</h3>
  <form action="${ pageContext.request.contextPath }/customerAction_save" method="post">
      姓名:<input type="text" name="name" /><br/>
      年齡:<input type="text" name="age" /><br/>
      <input type="submit" value="提交"/><br/>
  </form>
  </body>
</html>

success.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>首頁</title>
</head>
<body>
    <h1>保存成功!</h1>
</body>
</html>

七、實體層代碼

 1 package com.pri.domain;
 2 
 3 import javax.persistence.*;
 4 
 5 
 6 @Entity
 7 @Table(name = "customer")
 8 public class Customer {
 9     @Id
10     @Column(name = "userId")
11     @GeneratedValue(strategy = GenerationType.IDENTITY)
12     private Integer userId;
13 
14     @Column(name = "name")
15     private String name;
16     @Column(name = "age")
17     private Integer age;
18 
19     public Integer getUserId() {return userId; }
20 
21     public void setUserId(Integer userId) {this.userId = userId;}
22 
23     public String getName() {return name;}
24 
25     public void setName(String name) {this.name = name;}
26 
27     public Integer getAge() {return age;}
28 
29     public void setAge(Integer age) {this.age = age;}
30 }

八、action層代碼

 1 package com.pri.action;
 2 
 3 import com.pri.domain.Customer;
 4 import com.pri.service.CustomerService;
 5 import com.opensymphony.xwork2.ActionSupport;
 6 import com.opensymphony.xwork2.ModelDriven;
 7 import org.apache.struts2.convention.annotation.Action;
 8 import org.apache.struts2.convention.annotation.Namespace;
 9 import org.apache.struts2.convention.annotation.ParentPackage;
10 import org.apache.struts2.convention.annotation.Result;
11 import org.springframework.context.annotation.Scope;
12 import org.springframework.stereotype.Controller;
13 import javax.annotation.Resource;
14 
15 
16 @Controller("customerAction")
17 @ParentPackage(value = "struts-default")
18 @Scope("prototype")
19 @Namespace(value = "/")
20 public class CustomerAction extends ActionSupport implements ModelDriven<Customer>{
21 
22     private Customer customer;
23 
24     @Resource(name = "customerService")
25     private CustomerService customerService;
26 
27     @Override
28     public Customer getModel() {
29         if (customer == null ){
30             customer = new Customer();
31         }
32         return customer;
33     }
34 
35     @Action(value = "customerAction_save",
36             results = {@Result(name = SUCCESS,type = "redirect",location = "/success.jsp")})
37     public String save(){
38         customerService.save(customer);
39         return SUCCESS;
40     }
41 }

九、service層代碼

package com.pri.service;

import com.pri.domain.Customer;

public interface CustomerService {
    void save(Customer user);
}
//=======================================
package com.pri.service.impl;

import com.pri.domain.Customer;
import com.pri.dao.CustomerDao;
import com.pri.service.CustomerService;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import javax.annotation.Resource;

@Service("customerService")
@Transactional
public class CustomerServiceImpl implements CustomerService {

    @Resource(name = "customerDao")
    private CustomerDao customerDao;

    @Override
    public void save(Customer customer) {
        customerDao.save(customer);
    }
}

十、dao層代碼

package com.pri.dao;

import com.pri.domain.Customer;

public interface CustomerDao {
    void save(Customer customer);
}

//==================================================================
package com.pri.dao.impl; import org.hibernate.SessionFactory; import org.springframework.orm.hibernate5.support.HibernateDaoSupport; import org.springframework.stereotype.Component; import javax.annotation.Resource; @Component("myHibernateDaoSupport") public class MyHibernateDaoSupport extends HibernateDaoSupport { @Resource(name = "sessionFactory") public void setSuperSessionFactory(SessionFactory sessionFactory){ super.setSessionFactory(sessionFactory); } } //================================================= package com.pri.dao.impl; import com.pri.dao.CustomerDao; import com.pri.domain.Customer; import org.springframework.stereotype.Repository; @Repository("customerDao") public class CustomerDaoImpl extends MyHibernateDaoSupport implements CustomerDao { @Override public void save(Customer customer) { getHibernateTemplate().save(customer); } }

十一、Spring Beans Dependencies

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.首先來說下cookie的作用 我們在瀏覽器中,經常涉及到數據的交換,比如你登錄郵箱,登錄一個頁面。我們經常會在此時設置30天內記住我,或者自動登錄選項。那麼它們是怎麼記錄信息的呢,答案就是今天的主角cookie了,Cookie是由HTTP伺服器設置的,保存在瀏覽器中,但HTTP協議是一種無狀態協 ...
  • 表單元素file設置隱藏,通過其他元素打開: .imgfile為input file JS部分: 一般處理程式部分: ...
  • 1、Element.scrollIntoView() 該方法讓當前元素滾動到瀏覽器視窗的可是區域內; ...
  • 在頁面排版中,經常遇到長英文單詞溢出段落容器的情況,如何解決該問題?不讓測試妹妹來騷擾你呢?在CSS中提到單詞斷行,自然就會想到word-break和word-wrap。具體差別對比請查看演示及說明。 ...
  • 一、重構 1、重構變數 修改變數名稱,即重命名。快捷鍵 Shift + F6 ,位於 Refactor 中。 2、重構方法 可以增加變數個數。快捷鍵 Ctrl + F6 ,位於 Refactor 中。 二、抽取 1、抽取變數 抽取變數的快捷鍵 Ctrl +Alt + V,位於 Refactor 中的 ...
  • 一、前言 Python 面向對象中有繼承這個概念,初學時感覺很牛逼,裡面也有個super類,經常見到,最近做一些題才算是理解了。特地記錄分享給後來研究的小伙伴,畢竟現在小學生都開始學了(滑稽臉) 二、代碼 直接上乾貨,能把下麵一個問題全答對,後面就不用看了。 當然,直接運行就有答案了,還是要仔細想一 ...
  • 本文主要內容 字元 位元組 結構體和記憶體視圖 字元和位元組之間的轉換——編解碼器 BOM鬼符 明天繼續。。。 python高級——目錄 文中代碼均放在github上:https://github.com/ampeeg/cnblogs/tree/master/python高級 字元 此時只用記住在pyth ...
  • 原文鏈接: "Java軟體工程師技能圖譜" 最近在考慮“擁有怎樣的技能才能算一名合格的java軟體工程師呢?”這個問題。碰巧在github發現一個很棒的開源項目 "程式員技能圖譜" 。 "@Zhang Wei" 寫的 "Java Software Engineer Skill Map" 確實能解答我 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...