Spring JDBC-StoredProcedure 클래스
그만큼 org.springframework.jdbc.core.StoredProcedureclass는 RDBMS 저장 프로 시저의 개체 추상화를위한 수퍼 클래스입니다. 이 클래스는 추상적이며 서브 클래스는 제공된 execute (java.lang.Object ...) 메서드에 위임하는 호출을위한 형식화 된 메서드를 제공합니다. 상속 된 SQL 속성은 RDBMS에있는 저장 프로 시저의 이름입니다.
클래스 선언
다음은에 대한 선언입니다. org.springframework.jdbc.core.StoredProcedure 클래스-
public abstract class StoredProcedure
extends SqlCall
다음 예제는 Spring StoredProcedure를 사용하여 저장 프로 시저를 호출하는 방법을 보여줍니다. 저장 프로 시저를 호출하여 Student Table에서 사용 가능한 레코드 중 하나를 읽습니다. ID를 전달하고 학생 기록을받습니다.
통사론
class StudentProcedure extends StoredProcedure{
public StudentProcedure(DataSource dataSource, String procedureName){
super(dataSource,procedureName);
declareParameter(new SqlParameter("in_id", Types.INTEGER));
declareParameter(new SqlOutParameter("out_name", Types.VARCHAR));
declareParameter(new SqlOutParameter("out_age", Types.INTEGER));
compile();
}
public Student execute(Integer id){
Map<String, Object> out = super.execute(id);
Student student = new Student();
student.setId(id);
student.setName((String) out.get("out_name"));
student.setAge((Integer) out.get("out_age"));
return student;
}
}
어디,
StoredProcedure − 저장 프로 시저를 나타내는 StoredProcedure 객체.
StudentProcedure − StudentProcedure 객체는 StoredProcedure를 확장하여 입력, 출력 변수를 선언하고 결과를 Student 객체에 매핑합니다.
student − 학생 개체.
위에서 언급 한 Spring JDBC 관련 개념을 이해하기 위해 저장 프로 시저를 호출하는 예제를 작성해 보겠습니다. 예제를 작성하기 위해 작동하는 Eclipse IDE를 준비하고 다음 단계를 사용하여 Spring 애플리케이션을 만듭니다.
단계 | 기술 |
---|---|
1 | Spring JDBC-First Application 장에서 만든 Student 프로젝트를 업데이트합니다 . |
2 | 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 list down
* a record from the Student table corresponding
* to a passed student id.
*/
public Student getStudent(Integer id);
}
다음은의 내용입니다 Student.java 파일.
package com.tutorialspoint;
public class Student {
private Integer age;
private String name;
private Integer id;
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;
}
}
다음은의 내용입니다 StudentMapper.java 파일.
package com.tutorialspoint;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.springframework.jdbc.core.RowMapper;
public class StudentMapper implements RowMapper<Student> {
public Student mapRow(ResultSet rs, int rowNum) throws SQLException {
Student student = new Student();
student.setId(rs.getInt("id"));
student.setName(rs.getString("name"));
student.setAge(rs.getInt("age"));
return student;
}
}
다음은 구현 클래스 파일입니다. StudentJDBCTemplate.java 정의 된 DAO 인터페이스 StudentDAO 용.
package com.tutorialspoint;
import java.sql.Types;
import java.util.List;
import java.util.Map;
import javax.sql.DataSource;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.SqlOutParameter;
import org.springframework.jdbc.core.SqlParameter;
import org.springframework.jdbc.core.namedparam.MapSqlParameterSource;
import org.springframework.jdbc.core.namedparam.SqlParameterSource;
import org.springframework.jdbc.object.StoredProcedure;
public class StudentJDBCTemplate implements StudentDao {
private DataSource dataSource;
private JdbcTemplate jdbcTemplateObject;
public void setDataSource(DataSource dataSource) {
this.dataSource = dataSource;
this.jdbcTemplateObject = new JdbcTemplate(dataSource);
}
public Student getStudent(Integer id) {
StudentProcedure studentProcedure = new StudentProcedure(dataSource, "getRecord");
return studentProcedure.execute(id);
}
}
class StudentProcedure extends StoredProcedure{
public StudentProcedure(DataSource dataSource, String procedureName) {
super(dataSource,procedureName);
declareParameter(new SqlParameter("in_id", Types.INTEGER));
declareParameter(new SqlOutParameter("out_name", Types.VARCHAR));
declareParameter(new SqlOutParameter("out_age", Types.INTEGER));
compile();
}
public Student execute(Integer id){
Map<String, Object> out = super.execute(id);
Student student = new Student();
student.setId(id);
student.setName((String) out.get("out_name"));
student.setAge((Integer) out.get("out_age"));
return student;
}
}
호출 실행을 위해 작성하는 코드에는 IN 매개 변수가 포함 된 SqlParameterSource를 만드는 작업이 포함됩니다. 입력 값에 제공된 이름을 저장 프로 시저에 선언 된 매개 변수 이름의 이름과 일치시키는 것이 중요합니다. execute 메소드는 IN 매개 변수를 취하고 스토어드 프로 시저에 지정된 이름으로 입력 된 out 매개 변수를 포함하는 Map을 리턴합니다.
다음은의 내용입니다 MainApp.java 파일.
package com.tutorialspoint;
import java.util.List;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.tutorialspoint.StudentJDBCTemplate;
public class MainApp {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
StudentJDBCTemplate studentJDBCTemplate =
(StudentJDBCTemplate)context.getBean("studentJDBCTemplate");
Student student = studentJDBCTemplate.getStudent(1);
System.out.print("ID : " + student.getId() );
System.out.print(", Name : " + student.getName() );
System.out.println(", Age : " + student.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"
xsi:schemaLocation = "http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-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 = "admin"/>
</bean>
<!-- Definition for studentJDBCTemplate bean -->
<bean id = "studentJDBCTemplate"
class = "com.tutorialspoint.StudentJDBCTemplate">
<property name = "dataSource" ref = "dataSource" />
</bean>
</beans>
소스 및 빈 구성 파일 생성이 완료되면 애플리케이션을 실행 해 보겠습니다. 응용 프로그램에 문제가 없으면 다음 메시지가 인쇄됩니다.
ID : 1, Name : Zara, Age : 10