## TDengine Spring JDBC Template Demo `Spring JDBC Template` simplifies the operations of acquiring and releasing native JDBC Connections, making database operations more convenient. ### Configuration Modify the TDengine configuration in the `src/main/resources/applicationContext.xml` file: ```xml ``` ### Package and run Navigate to the `TDengine/tests/examples/JDBC/SpringJdbcTemplate` directory and execute the following commands to generate an executable jar file. ```shell mvn clean package ``` After successfully packaging, navigate to the `target/` directory and execute the following commands to run the tests: ```shell java -jar target/SpringJdbcTemplate-1.0-SNAPSHOT-jar-with-dependencies.jar ```