JAvaフレームワークSpring学習(一)
2672 ワード
インタフェースの作成
クラス実装インタフェースの作成
プロファイルjdbc.properties
ユニットテストクラス
目的を達成するには、プロファイルを変更することでコンテンツを変更できます.
public interface UserDao {
void printInfo();
}
クラス実装インタフェースの作成
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class UserDaoImpl implements UserDao{
private String jdbcUrl;
private String driverClass;
private String username;
private String password;
public UserDaoImpl() {
//
String resource = "jdbc.properties";
Properties props = loadProperties(resource);
//
jdbcUrl = props.getProperty("jdbcUrl");
driverClass = props.getProperty("driverClass");
username = props.getProperty("username");
password = props.getProperty("password");
//
printInfo();
}
/**
*
* @param resource
*/
private Properties loadProperties(String resource){
InputStream inputStream = null;
try {
inputStream = getClass().getResourceAsStream(resource);
/**
*
* this.getClass().getClassLoader().getResourceAsStream("");
*
* this.getClass().getResourceAsStream("");
*/
Properties props = new Properties();
props.load(inputStream); //
return props;
} catch (IOException e) {
throw new RuntimeException(e);
}finally{
try {
inputStream.close();//
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
public void printInfo(){
System.out.println("jdbcUrl = "+jdbcUrl);
System.out.println("driverClass = "+driverClass);
System.out.println("username = "+username);
System.out.println("password = "+password);
}
public String getJdbcUrl() {
return jdbcUrl;
}
public void setJdbcUrl(String jdbcUrl) {
this.jdbcUrl = jdbcUrl;
}
public String getDriverClass() {
return driverClass;
}
public void setDriverClass(String driverClass) {
this.driverClass = driverClass;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
プロファイルjdbc.properties
jdbcUrl = jdbc:mysql:///test22
driverClass = com.mysql.jdbc.Driver
username = root
password = root
ユニットテストクラス
import static org.junit.Assert.*;
import org.junit.Test;
public class UserDaoImplTest {
@Test
public void testUserDaoImpl() {
UserDao userDao = new UserDaoImpl();
}
}
目的を達成するには、プロファイルを変更することでコンテンツを変更できます.