Spring Boot入門(2)使用MySQL數據庫

介紹

  本文將介紹如何在Spring項目中鏈接、處理MySQL數據庫。
  該項目使用Spring Data JPA和Hibernate來鏈接、處理MySQL數據庫,固然,這僅僅是其中一種方式,你也可使用Spring JDBC或者MyBatis.
  Spring Data JPA是Spring Data的一個子項目,主要用於簡化數據訪問層的實現,使用Spring Data JPA能夠輕鬆實現增刪改查、分頁、排序等。Spring Data擁有不少子項目,除了Spring Data JPA外,還有以下子項目:java

  • Spring Data Commons
  • Spring Data MongoDB
  • Spring Data Redis
  • Spring Data Solr
  • Spring Data Gemfire
  • Spring Data REST
  • Spring Data Neo4j

  Hibernate是一個開放源代碼的對象關係映射框架,它對JDBC進行了很是輕量級的對象封裝,它將POJO與數據庫表創建映射關係,是一個全自動的ORM框架,Hibernate能夠自動生成SQL語句,自動執行,使得Java程序員能夠爲所欲爲的使用對象編程思惟來操縱數據庫。 Hibernate能夠應用在任何使用JDBC的場合,既能夠在Java的客戶端程序使用,也能夠在Servlet/JSP的Web應用中使用,最具革命意義的是,Hibernate能夠在應用EJB的J2EE架構中取代CMP,完成數據持久化的重任。
  本文將介紹如何使用Spring Data JPA和Hibernate來鏈接、處理MySQL數據庫。mysql

準備

  首先咱們須要對MySQL作一些準備處理。咱們將要在MySQL中建立db_example數據庫,並建立springuser用戶,擁有對db_example數據庫的全部操做權限。打開MySQL , 輸入如下命令:git

mysql> create database db_example; -- 建立新數據庫db_example
mysql> create user 'springuser'@'localhost' identified by 'pwd123'; -- 建立新用戶springuser,密碼爲pwd123
mysql> grant all on db_example.* to 'springuser'@'localhost'; -- 給予springuser用戶對db_example數據庫的全部操做權限

Spring Boot程序

Step1. 建立項目spring_mysql, 以及項目佈局:

mkdir spring_mysql
cd ./spring_mysql
touch build.gradle
mkdir -p src/main/java
mkdir -p src/main/resources
mkdir -p src/test/java
mkdir -p src/test/resources

Step2 編寫build.gradle

  build.gradle代碼以下:程序員

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.RELEASE")
    }
}

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

bootJar {
    baseName = 'gs-accessing-data-mysql'
    version =  '0.1.0'
}

repositories {
    mavenCentral()
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

dependencies {
    compile("org.springframework.boot:spring-boot-starter-web")

    // JPA Data (We are going to use Repositories, Entities, Hibernate, etc...)
    compile 'org.springframework.boot:spring-boot-starter-data-jpa'

    // Use MySQL Connector-J
    compile 'mysql:mysql-connector-java'

    testCompile('org.springframework.boot:spring-boot-starter-test')
}

在上述Spring Boot項目中,主要使用spring-boot-starter-web ,spring-boot-starter-data-jpa和mysql:mysql-connector-java來實如今Web端操做MySQL .github

Step3 配置屬性文件

  新建src/main/resources/application.properties文件,配置相關屬性,代碼以下:web

spring.jpa.hibernate.ddl-auto=create
spring.datasource.url=jdbc:mysql://localhost:3306/db_example
spring.datasource.username=springuser
spring.datasource.password=pwd123

在上述代碼中,主要的數據庫操做爲新建(create),由於數據庫中實現不存在相應的表格。使用MySQL的localhost服務器的3306端口的db_example數據庫,並設置用戶名和密碼。spring

Step4 編寫Java文件

  建立src/main/java/hello文件夾(package),在該文件夾下新建User.java,Hibernate會將該entity類自動轉化成數據庫中的表格。User.java的完整代碼以下:sql

package hello;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;

@Entity // This tells Hibernate to make a table out of this class
public class User {
    @Id
    @GeneratedValue(strategy=GenerationType.AUTO)
    private Integer id;

    private String name;

    private String email;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

}

  在上述文件夾中新建UserRepository.java,其代碼以下:數據庫

package hello;

import org.springframework.data.repository.CrudRepository;

import hello.User;

// This will be AUTO IMPLEMENTED by Spring into a Bean called userRepository
// CRUD refers Create, Read, Update, Delete

public interface UserRepository extends CrudRepository<User, Long> {

}

這是repository接口, 它將會被Spring中的bean中自動執行。
  在上述文件夾中新建MainController.java,代碼以下:編程

package hello;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

import hello.User;
import hello.UserRepository;

@Controller    // This means that this class is a Controller
@RequestMapping(path="/demo") // This means URL's start with /demo (after Application path)
public class MainController {
    @Autowired // This means to get the bean called userRepository
               // Which is auto-generated by Spring, we will use it to handle the data
    private UserRepository userRepository;

    @GetMapping(path="/add") // Map ONLY GET Requests
    public @ResponseBody String addNewUser (@RequestParam String name
            , @RequestParam String email) {
        // @ResponseBody means the returned String is the response, not a view name
        // @RequestParam means it is a parameter from the GET or POST request

        User n = new User();
        n.setName(name);
        n.setEmail(email);
        userRepository.save(n);
        return "Saved";
    }

    @GetMapping(path="/all")
    public @ResponseBody Iterable<User> getAllUsers() {
        // This returns a JSON or XML with the users
        return userRepository.findAll();
    }
}

這是Spring應用的新控制器(Controller)。
  在上述文件夾中新建Application.java,代碼以下:

package hello;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application {

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

這是該Spring Boot項目的主要程序入口。

Step5 建立可執行jar包

cd spring_mysql
gradle build

執行完畢後,會在build/libs文件夾下生成gs-accessing-data-mysql-0.1.0.jar .

運行及測試

  使用如下命令啓動該Spring Boot項目

java -jar build/libs/gs-accessing-data-mysql-0.1.0.jar

  在瀏覽器端測試,輸入如下網址:

localhost:8080/demo/add?name=Alex&email=alex@baidu.com
localhost:8080/demo/add?name=Jclian&email=github@sina.com
localhost:8080/demo/add?name=Bob&email=bob@google.com
localhost:8080/demo/add?name=Cook&email=cook@apple.com
localhost:8080/demo/add?name=Mark&email=mark@west.com

上述程序將會name和email參數的值解析成數據庫中user表中的記錄並儲存,瀏覽器界面以下圖:

儲存數據

在瀏覽器中輸入網址localhost:8080/demo/all,便可剛看咱們咱們插入到MySQL中的記錄(JSON格式):

網頁中查看數據

最後咱們去MySQL中查看數據是否插入成功,結果以下圖所示:

MySQL中查看數據

結束語

  本文將介紹如何使用Spring Data JPA和Hibernate來鏈接、處理MySQL數據庫。  本次分享到此結束,接下來還會繼續更新Spring Boot方面的內容,歡迎你們交流~~

相關文章
相關標籤/搜索