事務管理:比如兩條資訊同時插入資料庫,如果一條不成功,那麼另一條也不插入。這樣就需要引入了事務管理,需要在方法上加 @transactional事務註解
結構.png
在上一節基礎上新增maninfoservice,內容如下
package com.alun;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.stereotype.service;
import org.springframework.transaction.annotation.transactional;
/** * created by administrator on 2017/5/29.
*/@service
public class maninfoservice
}
在maninfocontroller中使用
@autowired
maninfoservice maninfoservice;
void inserttwo()
SpringBoot學習之Json資料互動
springboot 缺省會使用 json 作為響應報文格式。首先,我們建立乙個 usercontroller 用於處理前端的 web 請求。定義乙個簡單的控制器,與通常返回 url 的 controller 不一樣的是,login 使用了 responsebody 註解,它表示此介面響應為純資料,...
SpringBoot學習之Json資料互動
springboot 缺省會使用 json 作為響應報文格式。首先,我們建立乙個 usercontroller 用於處理前端的 web 請求。定義乙個簡單的控制器,與通常返回 url 的 controller 不一樣的是,login 使用了 responsebody 註解,它表示此介面響應為純資料,...
springboot之資料互動
備註 responsebody註解,它表示此介面響應為純資料,不帶任何介面展示。public class resultpublic enum resultcode public int getcode public string getmsg 1.使用者實體類 public class user2....