Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は持っている
Config { int a; .... }
と私のサービスとして
MySvc { @Produces(JSON) public Config getConfigData() { return config; } }
json をオブジェクト名でラップしたい
var MyConfig = {"a":"value" }
これは可能ですか?
現在、それは戻ってきます
{"a":"value"}