Skip to content

Commit

Permalink
tx:upgrade for 5.0.0.rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
ujued committed Jan 14, 2019
1 parent 66f731d commit d0fc3a5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ public Token login(@RequestParam("password") String password) throws TxManagerEx
/**
* 获取补偿信息
*
* @param page
* @param limit
* @return
* @param page 页码
* @param limit 记录数
* @return ExceptionList
*/
@GetMapping({"/exceptions/{page}", "/exceptions", "/exceptions/{page}/{limit}"})
public ExceptionList exceptionList(
Expand All @@ -69,9 +69,9 @@ public ExceptionList exceptionList(
/**
* 获取某个事务组某个节点具体补偿信息
*
* @param groupId
* @param unitId
* @return
* @param groupId groupId
* @param unitId unitId
* @return transaction info
*/
@GetMapping("/log/transaction-info")
public JSONObject transactionInfo(
Expand All @@ -87,9 +87,9 @@ public JSONObject transactionInfo(
/**
* 日志信息
*
* @param page
* @param limit
* @return
* @param page 页码
* @param limit 记录数
* @return TxLogList
*/
@GetMapping({"/logs/{page}", "/logs/{page}/{limit}", "/logs"})
public TxLogList txLogList(
Expand All @@ -104,7 +104,7 @@ public TxLogList txLogList(
/**
* 获取TxManager信息
*
* @return
* @return TxManagerInfo
*/
@GetMapping("/tx-manager")
public TxManagerInfo getTxManagerInfo() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Description:
* Date: 2018/11/23
*
* @auther ujued
* @author ujued
*/
@Configuration
@ComponentScan
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Description:
* Date: 2018/11/23
*
* @auther ujued
* @author ujued
*/
public class SAuthHandleException extends Exception {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Description:
* Date: 2018/11/23
*
* @auther ujued
* @author ujued
*/
public interface SAuthLogic {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* Description:
* Date: 2018/11/23
*
* @auther ujued
* @author ujued
*/
@Component
public class TokenInterceptor implements HandlerInterceptor {
Expand Down

0 comments on commit d0fc3a5

Please sign in to comment.