Jsp-MVC2,Connection Pool

2020. 8. 10. 19:35JSP-MVC model2

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
 
<Context>
<Resource
    name="jdbc/MySQL"
    auth="Container"
    type="javax.sql.DataSource"
    driverClassName="com.mysql.jdbc.Driver"
    url="jdbc:mysql://localhost:3306/jsp_model2_db5"
    username="root"
    password="1234"
    maxActive="100"
    maxIdle="20"
    
    
/>
 
</Context>
 
//------------------------------------------------------
 
cs

 

DAO에서 메서드마다 새로운 객체를 생성하면 메모리 낭비와 효율적이지 못하기 때문에

따로  Context.xml 파일로 커넥션 풀이라는 곳을 만들어서 필요한 곳에서 꺼내 쓰고 반환을 바로 할 수 있게 만들어 놓은 곳이다. 

'JSP-MVC model2' 카테고리의 다른 글

Jsp-MVC2 -DAO  (0) 2020.08.10
Jsp -MVC2- Action,ActionForward  (0) 2020.08.10
Jsp-MVC2-FrontController  (0) 2020.08.10
Jsp - MVC2, path 얻기,web.xml  (0) 2020.08.04
Jsp - MVC model2,MVC2  (0) 2020.08.04