高度な機能 - コントローラー リクエスト ハンドラー


WebMVC モジュールは、標準の Web リクエスト処理のサポートに加えて、XML および JSON プロトコル形式に基づくリクエストのサポートも提供します。

シナリオ 1: すべてのコントローラーに影響するグローバル設定

次のパラメータを使用して構成します。デフォルトはデフォルト、オプションの値は [default|json|xml]、または開発者がカスタマイズした IRequestProcessor インターフェイス実装クラス名にすることができます。

ymp.configs.webmvc.request_processor_class=default

シーン 2: 設定します。特定のコントローラー メソッドを起動します。

@Controller
@RequestMapping("/demo")
public class DemoController {

    @RequestMapping("/sayHi")
    @RequestProcessor(JSONRequestProcessor.class)
    public IView sayHi(@RequestParam String name, @RequestParam String content) {
        return View.textView("Hi, " + name + ", Content: " + content);
    }

    @RequestMapping("/sayHello")
    @RequestProcessor(XMLRequestProcessor.class)
    public IView sayHello(@RequestParam String name, @RequestParam String content) {
        return View.textView("Hi, " + name + ", Content: " + content);
    }
}

次の JSON データを POST 経由で http://localhost:8080/demo/sayHi に送信します。 http://localhost:8080/demo/sayHi发送如下JSON数据:

{ "name" : "YMPer", "content" : "Welcome!" }

通过POST方式向http://localhost:8080/demo/sayHello

<xml>
    <name>YMPer</name>
    <content><![CDATA[Welcome!]]></content>
</xml>
POST 経由で http://localhost:8080/demo/sayHello への XML データ:

rrreee
🎜🎜 上記 2 つのプロトコル形式、JSON と XML メソッドのコントローラーは、パラメーターの検証とその他の機能 🎜🎜🎜