Trong dự án Java Maven, làm thế nào để bạn tạo các tệp nguồn java từ JSON? Ví dụ chúng ta có
{
"firstName": "John",
"lastName": "Smith",
"address": {
"streetAddress": "21 2nd Street",
"city": "New York"
}
}
Khi chúng tôi chạy, mvn generate-sources
chúng tôi muốn nó tạo ra một cái gì đó như thế này:
class Address {
JSONObject mInternalJSONObject;
Address (JSONObject json){
mInternalJSONObject = json;
}
String getStreetAddress () {
return mInternalJSONObject.getString("streetAddress");
}
String getCity (){
return mInternalJSONObject.getString("city");
}
}
class Person {
JSONObject mInternalJSONObject;
Person (JSONObject json){
mInternalJSONObject = json;
}
String getFirstName () {
return mInternalJSONObject.getString("firstName");
}
String getLastName (){
return mInternalJSONObject.getString("lastName");
}
Address getAddress (){
return Address(mInternalJSONObject.getString("address"));
}
}
Là một nhà phát triển Java, tôi cần viết những dòng XML nào pom.xml
để thực hiện điều này?