SpringBoot初始教程之数据库连接池(druid)

时间:2025-04-03 07:50:13
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="/POM/4.0.0" xmlns:xsi="http:///2001/XMLSchema-instance" xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0."> <parent> <groupId></groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.4.</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>springboot-6</artifactId> <dependencies> <dependency> <groupId></groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId></groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId></groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId></groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.39</version> </dependency> <dependency> <groupId></groupId> <artifactId>druid</artifactId> <version>1.0.26</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId></groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>1.4.</version> <configuration> <fork>true</fork> </configuration> </plugin> </plugins> </build> </project>