キャッシュクリア
最終更新日: 2020年3月14日
R8 | R9
URLに主キーを指定して、詳細データを取得します。
http://localhost:8921/wagby/rest/customer/clearcache/1000
STATUS=200 OK
主キーを指定しない場合、当該モデルのすべてのキャッシュがクリアされます。
http://localhost:8921/wagby/rest/customer/clearcache
STATUS=200 OK
主キーを指定する
@RequestMapping(value="/rest/${modelid}/clearcache/{pkey}", method=POST)
URL例
POST
レスポンス
{
"errors": {
"jfcdebug": [],
"jfcerror": [],
"jfcinfo": [],
"jfcwarn": []
},
"clearcache_state": "clearone",
"status": "showJnews.input",
"pkey": "1000"
}
モデルの全キャッシュをクリアする
@RequestMapping(value="/rest/[modelid]/clearcache", method=POST)
URL例
POST
レスポンス
{
"errors": {
"jfcdebug": [],
"jfcerror": [],
"jfcinfo": [],
"jfcwarn": []
},
"clearcache_state": "clearall",
"status": "showJnews.input",
"pkey": null
}
仕様・制約