Spring JDBC-SimpleJdbcCall 클래스
그만큼 org.springframework.jdbc.core.SimpleJdbcCall클래스는 저장 프로 시저 또는 저장 함수에 대한 호출을 나타내는 재사용 가능한 다중 스레드 개체입니다. 기본 저장 프로 시저 / 함수에 액세스하는 데 필요한 코드를 단순화하기 위해 메타 데이터 처리를 제공합니다.
제공해야 할 것은 프로 시저 / 함수의 이름과 호출을 실행할 때 매개 변수를 포함하는 맵입니다. 제공된 매개 변수의 이름은 저장 프로 시저가 생성 될 때 선언 된 in 및 out 매개 변수와 일치합니다.
클래스 선언
다음은에 대한 선언입니다. org.springframework.jdbc.core.SimpleJdbcCall 클래스-
public class SimpleJdbcCall
extends AbstractJdbcCall
implements SimpleJdbcCallOperations
다음 예제는 Spring SimpleJdbcCall을 사용하여 저장 프로 시저를 호출하는 방법을 보여줍니다. 저장 프로 시저를 호출하여 Student Table에서 사용 가능한 레코드 중 하나를 읽습니다. 우리는 신분증을 전달하고 학생 기록을받을 것입니다.
통사론
SimpleJdbcCall jdbcCall = new SimpleJdbcCall(dataSource).withProcedureName("getRecord");
SqlParameterSource in = new MapSqlParameterSource().addValue("in_id", id);
Map<String, Object> out = jdbcCall.execute(in);
Student student = new Student();
student.setId(id);
student.setName((String) out.get("out_name"));
student.setAge((Integer) out.get("out_age"));
어디,
jdbcCall − 저장 프로 시저를 나타내는 SimpleJdbcCall 객체.
in − SqlParameterSource 객체는 저장 프로 시저에 매개 변수를 전달합니다.
student − 학생 개체.
out − 저장 프로 시저 호출 결과의 출력을 나타내는 객체를 매핑합니다.
위에서 언급 한 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.util.List;
import javax.sql.DataSource;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.namedparam.MapSqlParameterSource;
import org.springframework.jdbc.core.namedparam.SqlParameterSource;
import org.springframework.jdbc.core.simple.SimpleJdbcCall;
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) {
SimpleJdbcCall jdbcCall = new
SimpleJdbcCall(dataSource).withProcedureName("getRecord");
SqlParameterSource in = new MapSqlParameterSource().addValue("in_id", id);
Map<String, Object> out = jdbcCall.execute(in);
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 : 11