728x90
1. MyBatis Mapper XML 파일 설정방법
- 2가지 방법이 존재함
1) MyBatis Config 파일에서 설정하는 방법
2) Root Application Context 파일에서 설정하는 방법
(자세한사항: https://bigfat.tistory.com/98 [Bigfat])
2. MyBatis
DB연결하기
https://araikuma.tistory.com/473
3. JNDI는 무엇?
JNDI는 톰캣 SERVER.XML에 설정이 되어있어야함
<Context docBase="" path="" reloadable="true">
<Resource name="jdbc/IMARC" auth="Container" type="javax.sql.DataSource"
driverClassName="oracle.jdbc.driver.OracleDriver"
url="jdbc:oracle:thin:@XXX.XXX.XXX.X:XXX:XXXX"
username="XXXX" password="XXXX maxActive="20" maxIdle="10" maxWait="10000" />
</Context>
출처: https://beans.tistory.com/72 [The Winner Takes it All]
Reference
https://araikuma.tistory.com/473
728x90
'Dev > Web' 카테고리의 다른 글
[Struts2] 파라미터 전달 (0) | 2019.10.15 |
---|---|
[Eclipse] Referenced Libraries(외부 라이브러리) 추가 방법 (0) | 2019.10.15 |
[iBATIS/MyBatis] iBATIS와 MyBatis의 차이 (0) | 2019.10.14 |
[Eclipse] getter / setter 단축키 (0) | 2019.10.14 |
[Struts2] struts.xml 설정하기 (0) | 2019.10.10 |