zoukankan      html  css  js  c++  java
  • Spring Boot学习进阶笔记(二)-JdbcTemplate访问数据库

    基于上次一版本的代码,本篇只添加需要添加的代码

    1、添加maven依赖

    <!-- 数据库依赖 -->

    <dependency>

    <groupId>org.springframework.boot</groupId>

    <artifactId>spring-boot-starter-jdbc</artifactId>

    </dependency>

    <dependency>

    <groupId>mysql</groupId>

    <artifactId>mysql-connector-java</artifactId>

    </dependency>

     

    2、创建UserService接口和实现类

    public interface UserService {

     

        Integer getUserCount();

     

    }

     

    package com.zh.SpringBootDemo.service.imp;

    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.jdbc.core.JdbcTemplate;
    import org.springframework.stereotype.Service;

    import com.zh.SpringBootDemo.service.UserService;

    @Service
    public class UserServiceImpl implements UserService {

    @Autowired
    private JdbcTemplate jdbcTemplate;

    @Override
    public Integer getUserCount() {
    return jdbcTemplate.queryForObject("select count(1) from USER", Integer.class);
    }

    }

    3、在配置文件“application.properties”添加数据的链接信息

    spring.datasource.url=jdbc:mysql://192.168.2.111:3306/test?useUnicode=true&characterEncoding=utf-8&useSSL=false

    spring.datasource.username=root

    spring.datasource.password=123456

    spring.datasource.driver-class-name=com.mysql.jdbc.Driver

     

    完成!

  • 相关阅读:
    改造MFC程序,使原来不支持winsocket的工程支持winsocket
    算术移位和逻辑移位实现分析
    MFC 编辑框中字体大小改变,行高不能改变,只能显示一半的问题,已解决。
    在MFC中,使用控制台Console输出调试信息
    在MFC中使用GDI+的一般方法,以VC6.0编译器为例
    WinForm 实现主程序(exe)与其关联类库(*.dll)分开存放
    Deserializing/Serializing SOAP Messages in C#
    List分页
    ConvertJavaMiliSecondToDateTime
    中文数字大小写转阿拉伯数字
  • 原文地址:https://www.cnblogs.com/lovechengyu/p/7099321.html
Copyright © 2011-2022 走看看