본문 바로가기
WAS

context.xml JNDI 설정

by 수앙 2016. 9. 29.

언제나 찾기에 여기에 적어두자.

context.xml 파일을 웬만하면 프로젝트 webapps/META-INF 폴더 밑에 두자

그러면 WAS 의존성 없이 쓸 수 있다.

<Resource name="jdbc/test"
	global="jdbc/test"
	auth="Container"
	type="javax.sql.DataSource"
	driverClassName="org.mariadb.jdbc.Driver"
	url="jdbc:mariadb://localhost:3306/db"
	username="root"
	password="password"
	maxActive="50"
	maxIdle="50"
	minIdle="10"
	maxWait="10000" />

 

끝.

'WAS' 카테고리의 다른 글

WebLogic 12c WebSocket 구현  (0) 2020.04.30
Tomcat HTTPS(SSL) 설정  (0) 2011.09.10

댓글