fix: fix inconsistent naming pattern by JisoLya · Pull Request #2945 · apache/hugegraph
Currently, the configuration keys in rest-server.properties use snake_case (e.g., server_port), which is inconsistent with the naming convention expected by ServerOptions.java. This mismatch causes the following issues:
- User-defined configurations are ignored at startup.
- The server defaults to hardcoded values in ServerOptions.java.
Terminal logs show warnings such as: "arthas.xxxx is redundant ...", indicating that the properties are not being recognized or registered.


