Skip to content

Fix typo #3264

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/site/ko/xdoc/configuration.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@

SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(reader, environment, props);
]]></source>
<p>속성이 한개 이상 존재한다면 마이바티스는 일정한 순서로 로드한다.:</p>
<p>속성이 한개 이상 존재한다면 마이바티스는 다음의 순서로 로드한다.:</p>
<ul>
<li>properties 엘리먼트에 명시된 속성을 가장 먼저 읽는다.</li>
<li>properties 엘리먼트의 클래스패스 자원이나 url 속성으로 부터 로드된 속성을 두번째로 읽는다. 그래서 이미 읽은 값이 있다면 덮어쓴다.</li>
Expand Down Expand Up @@ -1805,7 +1805,7 @@ SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(reader,properti
<li><code>poolMaximumActiveConnections</code> - 주어진 시간에 존재할 수 있는 활성화된(사용중인) 커넥션의 수.
디폴트는 10이다.</li>
<li><code>poolMaximumIdleConnections</code> - 주어진 시간에 존재할 수 있는 유휴 커넥션의 수</li>
<li>강제로 리턴되기 전에 풀에서 “체크아웃” 될 수 있는 커넥션의 시간.
<li><code>poolMaximumCheckoutTime</code> - 강제로 리턴되기 전에 풀에서 “체크아웃” 될 수 있는 커넥션의 시간.
디폴트는 20000ms(20 초)</li>
<li><code>poolTimeToWait</code> - 풀이 로그 상태를 출력하고 비정상적으로 긴 경우 커넥션을 다시 얻을려고 시도하는 로우 레벨 설정.
디폴트는 20000ms(20 초)</li>
Expand Down
Loading