반응형
1. JDBC 다운로드 -> 웹 어플리케이션 WEB-INF/lib 파일로 복사
2. DB 인스턴스의 Security Group의 DB 포트 열기 (Sourse의 IP와 포트번호 중요)
3. sample code for a JDBC connector for mysql:
String url = "jdbc:mysql://EndPoint/";
String userName = "your_user_name";
String password = "your_password";
String dbName = "your_db_name";
Connection connection = DriverManager.getConnection(url + dbName, userName, password);
반응형
'개발 환경 및 오류' 카테고리의 다른 글
MyBatis 설치 및 연동 (1) | 2017.01.17 |
---|---|
Maven (0) | 2017.01.12 |
tomcat startup.sh 혹은 shutdown.sh: command not found (0) | 2017.01.09 |
이클립스 톰캣 오류 the tomcat server configuration at servers... (0) | 2017.01.09 |
SFTP로 AWS EC2 접속 (0) | 2017.01.08 |