Spring JDBC-저장 함수 호출
다음 예제는 Spring JDBC를 사용하여 저장 함수를 호출하는 방법을 보여줍니다. 저장된 함수를 호출하여 Student Table에서 사용 가능한 레코드 중 하나를 읽습니다. 우리는 ID를 전달하고 학생 이름을받습니다.
통사론
SimpleJdbcCall jdbcCall = new
SimpleJdbcCall(dataSource).withFunctionName("get_student_name");
SqlParameterSource in = new MapSqlParameterSource().addValue("in_id", id);
String name = jdbcCall.executeFunction(String.class, in);
Student student = new Student();
student.setId(id);
student.setName(name);
어디,
in − SqlParameterSource 객체는 저장된 함수에 매개 변수를 전달합니다.
jdbcCall − 저장된 함수를 나타내는 SimpleJdbcCall 객체.
jdbcTemplateObject − StudentJDBCTemplate 객체는 데이터베이스에서 저장된 함수를 호출합니다.
student − 학생 개체.
그만큼 SimpleJdbcCall클래스는 IN 매개 변수와 반환 값을 사용하여 저장된 함수를 호출하는 데 사용할 수 있습니다. Apache Derby, DB2, MySQL, Microsoft SQL Server, Oracle 및 Sybase와 같은 RDBMS 중 하나에서 작업하는 동안이 접근 방식을 사용할 수 있습니다.
접근 방식을 이해하려면 학생 ID를 가져와 해당 학생의 이름을 반환하는 다음 MySQL 저장 프로 시저를 고려하십시오. 따라서 MySQL 명령 프롬프트를 사용하여 TEST 데이터베이스에 저장된 함수를 생성 해 보겠습니다.
DELIMITER $$
DROP FUNCTION IF EXISTS `TEST`.`get_student_name` $$
CREATE FUNCTION `get_student_name` (in_id INTEGER)
RETURNS varchar(200)
BEGIN
DECLARE out_name VARCHAR(200);
SELECT name
INTO out_name
FROM Student where id = in_id;
RETURN out_name;
DELIMITER ;
위에서 언급 한 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).withFunctionName("get_student_name");
SqlParameterSource in = new MapSqlParameterSource().addValue("in_id", id);
String name = jdbcCall.executeFunction(String.class, in);
Student student = new Student();
student.setId(id);
student.setName(name);
return student;
}
}
호출 실행을 위해 작성하는 코드에는 IN 매개 변수가 포함 된 SqlParameterSource를 만드는 작업이 포함됩니다. 입력 값에 제공된 이름을 저장 함수에 선언 된 매개 변수 이름의 이름과 일치시키는 것이 중요합니다. executeFunction 메서드는 IN 매개 변수를 사용하고 저장된 함수에 지정된대로 문자열을 반환합니다.
다음은의 내용입니다 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() );
}
}
다음은 구성 파일입니다. 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