tzssangglass commented on a change in pull request #19: URL: https://github.com/apache/apisix-java-plugin-runner/pull/19#discussion_r642185980
########## File path: docs/development.md ########## @@ -0,0 +1,119 @@ +Development + +This document explains how to get started to develop the apisix-java-plugin-runner. + +Prerequisites +------------- + +* JDK 8 +* APISIX 2.6.0 +* Clone the [apisix-java-plugin-runner](https://github.com/apache/apisix-java-plugin-runner) project. +* Refer to [Debug](how-it-works.md#debug) to build the debug environment. + +Install +------- + +```shell +cd /path/to/apisix-java-plugin-runner +./mvnw install +``` + +Write Filter +------------ + +Refer to the code in the [sample](https://github.com/apache/apisix-java-plugin-runner/tree/main/sample) +to learn how to extend `PluginFilter`, define the order, rewrite requests and stop requests. + +#### Code Location Review comment: @dmsolr pls review here the plugin code written by the user is supposed to be placed in the https://github.com/apache/apisix-java-plugin-runner/tree/main/runner-plugin? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
