为什么返回Springboot ResponseEntitty这么慢?

时间:2019-01-24 10:38:58

标签: performance spring-boot kotlin

所以我正在API中构建这个springboot REST使用者。该API请求取决于另一个API。

用户可以向我的API发出请求,而我的API向其他服务发出请求以登录用户。

在构建此代码时,我得出的结论是,返回ResponseEntity比仅在请求正文中返回结果要慢得多。

这是我的快速代码,响应时间不到一秒钟:

 <?xml version="1.0" encoding="utf-8"?>
 <layer-list xmlns:android="http://schemas.android.com/apk/re/android">
 <item>
    <shape android:shape="rectangle">
        <solid android:color="#FF0000" />
    </shape>
</item>
<item android:left="5dp" android:right="5dp"  android:top="5dp" >
    <shape android:shape="rectangle">
        <solid android:color="#000000" />
    </shape>
   </item>
   </layer-list>

执行此操作需要花费很多时间:

@PostMapping("/adminLogin")
fun adminLogin(@RequestBody credentials: Credentials): AuthResponse {
    return RestTemplate().getForEntity(
            "$authenticatorURL/adminLogin?userName=${credentials.username}&passWord=${credentials.password}",
            AuthResponse::class.java).body
} 

有人可以向我解释为什么一种方法比另一种方法更快的不同之处。

0 个答案:

没有答案