zoukankan      html  css  js  c++  java
  • SpringBoot整合JdbcTemplate连接Mysql

    import java.io.IOException;
    
    import javax.sql.DataSource;
    
    import org.apache.ignite.IgniteSystemProperties;
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.context.annotation.Bean;
    import org.springframework.jdbc.core.JdbcTemplate;
    import org.springframework.jdbc.datasource.DriverManagerDataSource;
    
    
    @SpringBootApplication
    public class Application {
    
        public static void main(String[] args) throws IOException {
            
    
            SpringApplication.run(Application.class, args);
        }
    
        @Bean
        public JdbcTemplate jdbcTemplate() {
            DriverManagerDataSource dataSource = new DriverManagerDataSource();
            dataSource.setDriverClassName("com.mysql.jdbc.Driver");
            dataSource.setUrl("jdbc:mysql://127.0.0.1:3306/test");
            dataSource.setUsername("root");
            dataSource.setPassword("123456");
    
            JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource);
            return jdbcTemplate;
        }
    
    }

    添加依赖:

    apply plugin: 'org.springframework.boot'
    apply plugin: 'io.spring.dependency-management'

    springBoot {
    executable = true
    mainClass = 'com.test.Application'
    }

    dependencies {
    compile "org.springframework.boot:spring-boot-starter-web:${verSpringBoot}"

    compile "mysql:mysql-connector-java:5.1.21"

    }

  • 相关阅读:
    将博客搬至CSDN
    05 Python字符串的通用操作
    02 Shell变量
    01 Shell脚本编程入门知识
    windows10安装Python环境
    03 Python数值类型及数字类型详解
    02 变量和语句
    01 交互解释器
    poi.jar处理excel表
    (41)java并发包中的线程池种类及特性介绍
  • 原文地址:https://www.cnblogs.com/liangblog/p/10387769.html
Copyright © 2011-2022 走看看