How to optimize database access in Java backend function development?
Overview:
In Java back-end development, database access is a very important link. Optimizing database access can improve system performance and responsiveness. This article will introduce some common techniques for optimizing database access in the development of Java back-end functions and provide corresponding code examples.
The following is an example of using Apache Commons DBCP connection pool:
import org.apache.commons.dbcp2.BasicDataSource; public class DatabaseUtil { private static final String URL = "jdbc:mysql://localhost:3306/mydb"; private static final String USERNAME = "username"; private static final String PASSWORD = "password"; private static BasicDataSource dataSource; static { dataSource = new BasicDataSource(); dataSource.setUrl(URL); dataSource.setUsername(USERNAME); dataSource.setPassword(PASSWORD); // 设置连接池的一些属性 dataSource.setInitialSize(10); dataSource.setMaxTotal(100); } public static Connection getConnection() throws SQLException { return dataSource.getConnection(); } }
In the code, we use a static code block to initialize the connection pool and set some properties of the connection pool . The getConnection() method is used to obtain a database connection. When you need to access the database, just call the getConnection() method to obtain a connection.
The following is an example of batch operation using JDBC:
import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.SQLException; public class BatchUpdateExample { public void batchUpdate(List<User> userList) throws SQLException { Connection connection = DatabaseUtil.getConnection(); String sql = "INSERT INTO user (name, age) VALUES (?, ?)"; PreparedStatement statement = connection.prepareStatement(sql); for (User user : userList) { statement.setString(1, user.getName()); statement.setInt(2, user.getAge()); statement.addBatch(); } statement.executeBatch(); statement.close(); connection.close(); } }
In the code, we first obtain the database connection, then create a PreparedStatement object and add the batch using the addBatch() method Operation statement. After adding all operations, call the executeBatch() method to perform batch operations, and finally close related resources.
The following is an example of creating an index:
CREATE INDEX idx_name ON user (name);
In the code, we use the CREATE INDEX statement to create an index on the name field of the user table.
The following is an example of using SELECT *:
import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; public class SelectAllExample { public List<User> selectAll() throws SQLException { Connection connection = DatabaseUtil.getConnection(); String sql = "SELECT * FROM user"; PreparedStatement statement = connection.prepareStatement(sql); ResultSet resultSet = statement.executeQuery(); List<User> userList = new ArrayList<>(); while (resultSet.next()) { User user = new User(); user.setId(resultSet.getInt("id")); user.setName(resultSet.getString("name")); user.setAge(resultSet.getInt("age")); userList.add(user); } resultSet.close(); statement.close(); connection.close(); return userList; } }
In the code, we use SELECT to query all fields of the user table and save the results to a List collection middle. If there are a large number of fields in the table, using SELECT will affect the performance of the query.
The following is an example of appropriate selection of data types:
CREATE TABLE user ( id INT PRIMARY KEY, name VARCHAR(20), age TINYINT );
In the code, we created fields of the user table using the INT, VARCHAR, and TINYINT data types respectively.
Summary:
By optimizing database access in the development of Java back-end functions, we can improve the performance and response speed of the system. When writing code, you need to pay attention to reducing the number of creation and destruction of database connections and use database connection pools; rationally use batch operations to reduce network overhead; rationally use indexes to increase query speed; avoid using SELECT * and only query required fields; Choose the appropriate data type to reduce storage space. I hope this article will help you optimize database access.
Reference:
The above is the detailed content of How to optimize database access in Java backend function development?. For more information, please follow other related articles on the PHP Chinese website!