test.sh

来自「resetful样式的ws样例,一种面向资源的webservices服务」· Shell 代码 · 共 25 行

SH
25
字号
#!/bin/shecho -- Get the item meta-datajava -jar dist/OptimisticConcurrency.jar GET http://127.0.0.1:9998/occ/itemechoecho -- Get the item contentjava -jar dist/OptimisticConcurrency.jar GET http://127.0.0.1:9998/occ/item/contentechoecho -- Update the item contentecho "All play and no REST makes me a dull boy" | java -jar dist/OptimisticConcurrency.jar PUT http://127.0.0.1:9998/occ/item/content/0 text/plainechoecho -- Get the item meta-datajava -jar dist/OptimisticConcurrency.jar GET http://127.0.0.1:9998/occ/itemechoecho -- Get the item contentjava -jar dist/OptimisticConcurrency.jar GET http://127.0.0.1:9998/occ/item/contentechoecho -- Update the item content using an old versionecho "All play and no REST makes me a dull boy" | java -jar dist/OptimisticConcurrency.jar PUT http://127.0.0.1:9998/occ/item/content/0 text/plainecho

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?