Spring Boot Api

啟動(@SpringBootApplication)

/*SpringBoot項目的Bean裝配默認(rèn)規(guī)則是根據(jù)Application類所在的包位置從上往下掃描! “Application類”是指SpringBoot項目入口類。這個類的位置很關(guān)鍵*/
@SpringBootApplication
public class SpringBootApplication {
    public static void main(String[] args) {
        SpringApplication.run(SpringBootWebDemoApplication.class, args);
    }
}

事務(wù)(@EnableTransactionManagement)

@SpringBootApplication
@EnableTransactionManagement
public class SpringBootApplication {
    public static void main(String[] args) {
        SpringApplication.run(SpringBootWebDemoApplication.class, args);
    }
}

@Transactional
public interface BatchUserService {
    ResponseObject batchRegisterLewUser(BatchRegisterReq req);
    ResponseObject batchRegisterLiveUser(BatchRegisterReq req);
}

使用外置tomcat

@SpringBootApplication
@EnableTransactionManagement
public class Application extends SpringBootServletInitializer {
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(Application.class);
    }
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-tomcat</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.1.0</version>
            <scope>provided</scope>
        </dependency>

thymeleaf (html)模板

        <!--WebJars-->
        <dependency>
            <groupId>org.webjars</groupId>
            <artifactId>bootstrap</artifactId>
            <version>3.3.7</version>
        </dependency>
        <dependency>
            <groupId>org.webjars</groupId>
            <artifactId>jquery</artifactId>
            <version>3.2.1</version>
        </dependency>

        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.7.0</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.7.0</version>
        </dependency>
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
#開發(fā)的時候 這里要設(shè)成false
spring.thymeleaf.cache=false

OkHttp

        <dependency>
            <groupId>com.squareup.okhttp3</groupId>
            <artifactId>okhttp</artifactId>
            <version>3.6.0</version>
        </dependency>
    private static OkHttpClient client = new OkHttpClient();

    public static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");

    /*以json格式向服務(wù)器發(fā)送post請求*/
    public static String post(String url,JSONObject params) throws IOException {
        RequestBody body = RequestBody.create(JSON,params.toJSONString());
        Request request = new Request.Builder()
                .url(url)
                .post(body)
                .build();
        Response response = client.newCall(request).execute();
        return response.body().string();
    }
    /*以formData(表格)形式向服務(wù)器發(fā)送post請求*/
    public static String post(String url,JSONObject params) throws IOException {
        RequestBody formBody = new FormBody.Builder()
                .add("platform", "android")
                .add("name", "bug")
                .add("subject", "XXXXXXXXXXXXXXX")
                .build();
        Request request = new Request.Builder()
                .url(url)
                .post(formBody)
                .build();
        Response response = client.newCall(request).execute();
        return response.body().string();
    }
   /*MultipartBody格式向服務(wù)器發(fā)送post請求*/
   public static String post(String url,JSONObject params) throws IOException {
        RequestBody fileBody = RequestBody.create(MediaType.parse("image/png"), file);

        RequestBody requestBody = new MultipartBody.Builder()
                .setType(MultipartBody.FORM)
                .addFormDataPart("file", "head_image", fileBody)
                .addFormDataPart("imagetype", imageType)
                .addFormDataPart("userphone", userPhone)
                .build();
        Request request = new Request.Builder()
                .url(url)
                .post(formBody)
                .build();
        Response response = client.newCall(request).execute();
        return response.body().string();
    }

Page

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末宇驾,一起剝皮案震驚了整個濱河市噪伊,隨后出現(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ī)與錄音,去河邊找鬼唤殴。 笑死般婆,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的朵逝。 我是一名探鬼主播蔚袍,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼配名!你這毒婦竟也來了啤咽?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤渠脉,失蹤者是張志新(化名)和其女友劉穎宇整,沒想到半個月后,有當(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
  • 正文 我和宋清朗相戀三年立砸,在試婚紗的時候發(fā)現(xiàn)自己被綠了塑猖。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,577評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡押逼,死狀恐怖习寸,靈堂內(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. 我叫王不留悲龟,地道東北人屋讶。 一個月前我還...
    沈念sama閱讀 46,271評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像须教,于是被迫代替她去往敵國和親皿渗。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,452評論 2 348

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