1. 程式人生 > 其它 >redis資料結構---壓縮列表

redis資料結構---壓縮列表

Spring 宣告式事務管理

宣告式事務管理方法允許你在配置的幫助下而不是原始碼硬程式設計來管理事務。這意味著你可以將事務管理從事務程式碼中隔離出來。你可以只使用註釋或基於配置的 XML 來管理事務。 bean 配置會指定事務型方法。下面是與宣告式事務相關的步驟:

  • 我們使用標籤,它建立一個事務處理的建議,同時,我們定義一個匹配所有方法的切入點,我們希望這些方法是事務型的並且會引用事務型的建議。

  • 如果在事務型配置中包含了一個方法的名稱,那麼建立的建議在呼叫方法之前就會在事務中開始進行。

  • 目標方法會在 try / catch 塊中執行。

  • 如果方法正常結束,AOP 建議會成功的提交事務,否則它執行回滾操作。

讓我們看看上述步驟是如何實現的。在我們開始之前,至少有兩個資料庫表是至關重要的,在事務的幫助下,我們可以實現各種 CRUD 操作。以Student表為例,該表是使用下述 DDL 在 MySQL TEST 資料庫中建立的。

CREATE TABLE Student(
   ID   INT NOT NULL AUTO_INCREMENT,
   NAME VARCHAR(20) NOT NULL,
   AGE  INT NOT NULL,
   PRIMARY KEY (ID)
);

第二個表是Marks,我們用來儲存基於年份的學生標記。在這裡,SID是 Student 表的外來鍵。

CREATE TABLE Marks(
   SID INT NOT NULL,
   MARKS  INT NOT NULL,
   YEAR   INT NOT NULL
);

現在讓我們編寫 Spring JDBC 應用程式來在 Student 和 Marks 表中實現簡單的操作。讓我們適當的使用 Eclipse IDE,並按照如下所示的步驟來建立一個 Spring 應用程式:

步驟描述
1 建立一個名為SpringExample的專案,並在建立的專案中的src資料夾下建立包com.tutorialspoint
2 使用Add External JARs選項新增必需的 Spring 庫,解釋見Spring Hello World Examplechapter.
3 在專案中新增其它必需的庫mysql-connector-java.jarorg.springframework.jdbc.jar
org.springframework.transaction.jar。如果你還沒有這些庫,你可以下載它們。
4 建立 DAO 介面StudentDAO並列出所有需要的方法。儘管它不是必需的並且你可以直接編寫StudentJDBCTemplate類,但是作為一個好的實踐,我們還是做吧。
5 com.tutorialspoint包下建立其他必需的 Java 類StudentMarksStudentMarksMapperStudentJDBCTemplateMainApp。如果需要的話,你可以建立其他的 POJO 類。
6 確保你已經在 TEST 資料庫中建立了StudentMarks表。還要確保你的 MySQL 伺服器執行正常並且你使用給出的使用者名稱和密碼可以讀/寫訪問資料庫。
7 src資料夾下建立 Beans 配置檔案Beans.xml
8 最後一步是建立所有 Java 檔案和 Bean 配置檔案的內容並按照如下所示的方法執行應用程式。

下面是資料訪問物件介面檔案StudentDAO.java的內容:

package com.tutorialspoint;
import java.util.List;
import javax.sql.DataSource;
public interface StudentDAO {
   /** 
    * This is the method to be used to initialize
    * database resources ie. connection.
    */
   public void setDataSource(DataSource ds);
   /** 
    * This is the method to be used to create
    * a record in the Student and Marks tables.
    */
   public void create(String name, Integer age, Integer marks, Integer year);
   /** 
    * This is the method to be used to list down
    * all the records from the Student and Marks tables.
    */
   public List<StudentMarks> listStudents();
}

以下是StudentMarks.java檔案的內容:

package com.tutorialspoint;
public class StudentMarks {
   private Integer age;
   private String name;
   private Integer id;
   private Integer marks;
   private Integer year;
   private Integer sid;
   public void setAge(Integer age) {
      this.age = age;
   }
   public Integer getAge() {
      return age;
   }
   public void setName(String name) {
      this.name = name;
   }
   public String getName() {
      return name;
   }
   public void setId(Integer id) {
      this.id = id;
   }
   public Integer getId() {
      return id;
   }
   public void setMarks(Integer marks) {
      this.marks = marks;
   }
   public Integer getMarks() {
      return marks;
   }
   public void setYear(Integer year) {
      this.year = year;
   }
   public Integer getYear() {
      return year;
   }
   public void setSid(Integer sid) {
      this.sid = sid;
   }
   public Integer getSid() {
      return sid;
   }
}

下面是StudentMarksMapper.java檔案的內容:

package com.tutorialspoint;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.springframework.jdbc.core.RowMapper;
public class StudentMarksMapper implements RowMapper<StudentMarks> {
   public StudentMarks mapRow(ResultSet rs, int rowNum) throws SQLException {
      StudentMarks studentMarks = new StudentMarks();
      studentMarks.setId(rs.getInt("id"));
      studentMarks.setName(rs.getString("name"));
      studentMarks.setAge(rs.getInt("age"));
      studentMarks.setSid(rs.getInt("sid"));
      studentMarks.setMarks(rs.getInt("marks"));
      studentMarks.setYear(rs.getInt("year"));
      return studentMarks;
   }
}

下面是定義的 DAO 介面 StudentDAO 實現類檔案StudentJDBCTemplate.java

package com.tutorialspoint;
import java.util.List;
import javax.sql.DataSource;
import org.springframework.dao.DataAccessException;
import org.springframework.jdbc.core.JdbcTemplate;
public class StudentJDBCTemplate implements StudentDAO{
   private JdbcTemplate jdbcTemplateObject;
   public void setDataSource(DataSource dataSource) {
      this.jdbcTemplateObject = new JdbcTemplate(dataSource);
   }
   public void create(String name, Integer age, Integer marks, Integer year){
      try {
         String SQL1 = "insert into Student (name, age) values (?, ?)";
         jdbcTemplateObject.update( SQL1, name, age);
         // Get the latest student id to be used in Marks table
         String SQL2 = "select max(id) from Student";
         int sid = jdbcTemplateObject.queryForInt( SQL2 );
         String SQL3 = "insert into Marks(sid, marks, year) " + 
                       "values (?, ?, ?)";
         jdbcTemplateObject.update( SQL3, sid, marks, year);
         System.out.println("Created Name = " + name + ", Age = " + age);
         // to simulate the exception.
         throw new RuntimeException("simulate Error condition") ;
      } catch (DataAccessException e) {
         System.out.println("Error in creating record, rolling back");
         throw e;
      }
   }
   public List<StudentMarks> listStudents() {
      String SQL = "select * from Student, Marks where Student.id=Marks.sid";
      List <StudentMarks> studentMarks=jdbcTemplateObject.query(SQL, 
      new StudentMarksMapper());
      return studentMarks;
   }
}

現在讓我們改變主應用程式檔案MainApp.java,如下所示:

package com.tutorialspoint;
import java.util.List;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MainApp {
   public static void main(String[] args) {
      ApplicationContext context = 
             new ClassPathXmlApplicationContext("Beans.xml");
      StudentDAO studentJDBCTemplate = 
      (StudentDAO)context.getBean("studentJDBCTemplate");     
      System.out.println("------Records creation--------" );
      studentJDBCTemplate.create("Zara", 11, 99, 2010);
      studentJDBCTemplate.create("Nuha", 20, 97, 2010);
      studentJDBCTemplate.create("Ayan", 25, 100, 2011);
      System.out.println("------Listing all the records--------" );
      List<StudentMarks> studentMarks = studentJDBCTemplate.listStudents();
      for (StudentMarks record : studentMarks) {
         System.out.print("ID : " + record.getId() );
         System.out.print(", Name : " + record.getName() );
         System.out.print(", Marks : " + record.getMarks());
         System.out.print(", Year : " + record.getYear());
         System.out.println(", Age : " + record.getAge());
      }
   }
}

以下是配置檔案Beans.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"
   xmlns:tx="http://www.springframework.org/schema/tx"
   xmlns:aop="http://www.springframework.org/schema/aop"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
   http://www.springframework.org/schema/tx
   http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
   http://www.springframework.org/schema/aop
   http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">

   <!-- Initialization for data source -->
   <bean id="dataSource" 
      class="org.springframework.jdbc.datasource.DriverManagerDataSource">
      <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
      <property name="url" value="jdbc:mysql://localhost:3306/TEST"/>
      <property name="username" value="root"/>
      <property name="password" value="cohondob"/>
   </bean>

   <tx:advice id="txAdvice"  transaction-manager="transactionManager">
      <tx:attributes>
      <tx:method name="create"/>
      </tx:attributes>
   </tx:advice>

   <aop:config>
      <aop:pointcut id="createOperation" 
      expression="execution(* com.tutorialspoint.StudentJDBCTemplate.create(..))"/>
      <aop:advisor advice-ref="txAdvice" pointcut-ref="createOperation"/>
   </aop:config>

   <!-- Initialization for TransactionManager -->
   <bean id="transactionManager"
   class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
      <property name="dataSource"  ref="dataSource" />    
   </bean>

   <!-- Definition for studentJDBCTemplate bean -->
   <bean id="studentJDBCTemplate"  
   class="com.tutorialspoint.StudentJDBCTemplate">
      <property name="dataSource"  ref="dataSource" />  
   </bean>

</beans>

當你完成了建立源和 bean 配置檔案後,讓我們執行應用程式。如果你的應用程式執行順利的話,那麼會輸出如下所示的異常。在這種情況下,事務會回滾並且在資料庫表中不會建立任何記錄。

------Records creation--------
Created Name = Zara, Age = 11
Exception in thread "main" java.lang.RuntimeException: simulate Error condition

在刪除異常後,你可以嘗試上述示例,在這種情況下,會提交事務並且你可以在資料庫中看見一條記錄。