SpringBoot #1:spring boot集成swagger2 & spring-data-jpa & logging

SpringBoot這個(gè)框架我一直比較喜歡,但迫于沒有時(shí)間整理呕乎,一直延續(xù)到現(xiàn)在才來整理框架积担。這個(gè)文章將是一個(gè)系列,從基礎(chǔ)到復(fù)雜猬仁,后面將會(huì)不斷推出系列內(nèi)容帝璧。所有示例都使用Intellij IDEA編寫,項(xiàng)目構(gòu)建方式選擇了Gradle

本篇文章主要介紹持久層湿刽、API文檔的烁、基礎(chǔ)日志的配制。在數(shù)據(jù)持久層上我選擇的是Spring-data-jpa诈闺,使用它非常方便渴庆,可少寫很多代碼,效率也不錯(cuò)雅镊,而且還是spring的親兒子襟雷;api文檔選擇的是Swagger UI2,Swagger可以自動(dòng)生成API文檔仁烹,在文檔界面上還可以測試耸弄,給開發(fā)代來很多方便的;日志這一部分的話就用了比較基礎(chǔ)的東西了晃危,會(huì)把運(yùn)行日志輸出到指定文件中叙赚,方便維護(hù)時(shí)查找問題。

第一步僚饭,創(chuàng)建項(xiàng)目并配制build.gradle文件

通過Intellij IDEA新建一個(gè)Gradle項(xiàng)目震叮,在build.gradle文件中添加項(xiàng)目配制,執(zhí)行一次Refresh all Gradle Projects

apply plugin: 'java'
apply plugin: 'org.springframework.boot'
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.2.RELEASE")
    }
}
repositories {
    jcenter()
}
dependencies {
    compile "org.springframework.boot:spring-boot-starter"
    compile 'org.springframework.boot:spring-boot-starter-actuator'
    compile 'org.springframework.boot:spring-boot-starter-web'
    compile 'org.springframework.boot:spring-boot-starter-data-jpa'
    compile 'org.springframework.boot:spring-boot-starter-amqp'
    compile 'org.springframework.boot:spring-boot-starter-integration'
    compile 'org.springframework.integration:spring-integration-file:4.3.5.RELEASE'
    compile 'org.springframework.boot:spring-boot-devtools'
    compile 'mysql:mysql-connector-java'
    compile 'com.google.code.gson:gson:2.8.0'
    compile "io.springfox:springfox-swagger-ui:2.2.2"
    compile "io.springfox:springfox-swagger2:2.2.2"
    testCompile("org.springframework.boot:spring-boot-starter-test")
}

第二步鳍鸵,創(chuàng)建項(xiàng)目文件目錄

  1. 創(chuàng)建java文件夾苇瓣,在src文件夾下創(chuàng)建文件夾“/main/java”
  2. 創(chuàng)建resources文件夾,在src文件夾下創(chuàng)建文件夾“/main/resources”

第三步偿乖,配制application.yml文件

在“src/main/resources/”文件夾下新建文件“application.yml”击罪,并修改其中內(nèi)容哲嘲。

server:服務(wù)器相關(guān)設(shè)定,在這晨設(shè)定了服務(wù)啟動(dòng)后的端口號(hào)和服務(wù)的根地址
spring.datasource:配制系統(tǒng)數(shù)據(jù)源
spring.jpa:設(shè)置jpa的基礎(chǔ)信息
logging:調(diào)協(xié)日志的信息媳禁,logging.file設(shè)置日志文件的存放眠副,可以是“D:\test.logging”這種方式

server:
  port: 8081
  context-path: /api/

spring:
  datasource:
    driverClassName: com.mysql.jdbc.Driver
    url: jdbc:mysql://220.192.001.001:3306/test
    username: root
    password: 123456
    initialSize: 5
    minIdle: 5
    maxActive: 20

  jpa:
    hibernate:
      ddl-auto: update
      naming:
        strategy: org.hibernate.cfg.ImprovedNamingStrategy
    show-sql: true
    database: mysql

logging:
  file: springboot.log

第四步,添加Application.java文件

在項(xiàng)目java包中添加Application.java文件竣稽,并初始化內(nèi)容

package leix.lebean.sweb;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.support.SpringBootServletInitializer;
import org.springframework.context.ApplicationContext;
@SpringBootApplication
public class Application extends SpringBootServletInitializer  {
    @Autowired
    ApplicationContext context;
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
        return builder.sources(Application.class);
    }
    public static void main(String[] args) throws Exception {
        SpringApplication.run(Application.class, args);
    }
}

到這里所有的配制就完成了囱怕,剩下的就是數(shù)據(jù)層的使用了,下面介紹一上jpa的使用

創(chuàng)建數(shù)據(jù)實(shí)體

package leix.lebean.sweb.model;
import javax.persistence.*;
import java.io.Serializable;
/**
 * Name:City
 * Description:
 * Author:leix
 * Time: 2017/3/28 14:02
 */
@Entity
@Table(name = "city")
public class City  implements Serializable{
    @Id
    @Column(name = "id")
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private int id;
    @Column(name = "name")
    private String name;
    @Column(name = "state")
    private String state;
    @Column(name = "country")
    private String country;
    public int getId() {return id;}
    public void setId(int id) {this.id = id;}
    public String getName() {return name;}
    public void setName(String name) { this.name = name;}
    public String getState() {return state;}
    public void setState(String state) {this.state = state;}
    public String getCountry() {return country;}
    public void setCountry(String country) {this.country = country;}
}

創(chuàng)建數(shù)據(jù)處理倉庫毫别,jpa的具體語法在這里不詳細(xì)講述了娃弓,后面會(huì)專門寫一篇文章來介紹

package leix.lebean.sweb.repository;
import leix.lebean.sweb.model.City;
import org.springframework.data.jpa.repository.JpaRepository;
/**
 * Name:CityRepository
 * Description:
 * Author:leix
 * Time: 2017/3/28 14:13
 */
public interface CityRepository extends JpaRepository<City, Integer> {
    City findById(int id);
}

數(shù)據(jù)處理倉庫的調(diào)用

package leix.lebean.sweb.service.impl;
import leix.lebean.sweb.model.City;
import leix.lebean.sweb.repository.CityRepository;
import leix.lebean.sweb.service.CityService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
@Transactional
public class CityServiceImpl implements CityService {
    @Autowired
    CityRepository cityRepository;
    @Override
    public City findById(int id) {
        return cityRepository.findById(id);
    }
}

源碼看這里:https://github.com/lebean/spring-boot/tree/master/chapter01

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市岛宦,隨后出現(xiàn)的幾起案子台丛,更是在濱河造成了極大的恐慌,老刑警劉巖砾肺,帶你破解...
    沈念sama閱讀 211,042評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件挽霉,死亡現(xiàn)場離奇詭異,居然都是意外死亡债沮,警方通過查閱死者的電腦和手機(jī)炼吴,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評論 2 384
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來疫衩,“玉大人硅蹦,你說我怎么就攤上這事∶泼海” “怎么了童芹?”我有些...
    開封第一講書人閱讀 156,674評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長鲤拿。 經(jīng)常有香客問我假褪,道長,這世上最難降的妖魔是什么近顷? 我笑而不...
    開封第一講書人閱讀 56,340評論 1 283
  • 正文 為了忘掉前任生音,我火速辦了婚禮,結(jié)果婚禮上窒升,老公的妹妹穿的比我還像新娘缀遍。我一直安慰自己,他們只是感情好饱须,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,404評論 5 384
  • 文/花漫 我一把揭開白布域醇。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪譬挚。 梳的紋絲不亂的頭發(fā)上锅铅,一...
    開封第一講書人閱讀 49,749評論 1 289
  • 那天,我揣著相機(jī)與錄音减宣,去河邊找鬼盐须。 笑死,一個(gè)胖子當(dāng)著我的面吹牛漆腌,可吹牛的內(nèi)容都是我干的丰歌。 我是一名探鬼主播,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼屉凯,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了眼溶?” 一聲冷哼從身側(cè)響起悠砚,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎堂飞,沒想到半個(gè)月后灌旧,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,110評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡绰筛,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年枢泰,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片铝噩。...
    茶點(diǎn)故事閱讀 38,577評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡衡蚂,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出骏庸,到底是詐尸還是另有隱情毛甲,我是刑警寧澤,帶...
    沈念sama閱讀 34,258評論 4 328
  • 正文 年R本政府宣布具被,位于F島的核電站玻募,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏一姿。R本人自食惡果不足惜七咧,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,848評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望叮叹。 院中可真熱鬧艾栋,春花似錦、人聲如沸衬横。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至遥诉,卻和暖如春拇泣,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背矮锈。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評論 1 264
  • 我被黑心中介騙來泰國打工霉翔, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人苞笨。 一個(gè)月前我還...
    沈念sama閱讀 46,271評論 2 360
  • 正文 我出身青樓债朵,卻偏偏與公主長得像,于是被迫代替她去往敵國和親瀑凝。 傳聞我的和親對象是個(gè)殘疾皇子序芦,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,452評論 2 348

推薦閱讀更多精彩內(nèi)容