Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有许多 servlet(Spring MVC、Rest 等),它们都需要数据库连接
我有一个 MYSQL 数据库,我使用 mysql-connector-java-5.1.20-bin.jar 进行连接
servlet 每小时被命中几百次,我想提高性能
那么如何改进当前的设计呢?(当前系统是每个进入平台的请求都由创建数据库连接的 servlet 处理)
当前系统是每个进入平台的请求都由创建数据库连接的 servlet 处理
使用连接池
另见