2
とロンボク島での私のアプリの使用スプリングブーツを動作しません。
ありがとうございました。コード:春のブートRestControllerは、ロンボク
@RestController
@RequestMapping("/user")
public class UserController {
@GetMapping("/{id}")
public User query(@PathVariable long id) {
if (id == 1L) {
return new User(1l);
} else {
return new User(2L);
}
}
}
@Data
public class User {
private long userId;
private String userName;
private String password;
private String mobile;
private String address;
public User() {
}
public User(long userId){
this(userId, "zhengfc", "pwd", "13322222222", "shanghai-zhengjiang");
}
public User(long userId, String userName, String password, String mobile, String address) {
this.userId = userId;
this.userName = userName;
this.password = password;
this.mobile = mobile;
this.address = address;
}
}
これは関連する可能性があります:http://stackoverflow.com/a/37842512/475116 '' lombok'はうまく構成されていますか?それはゲッターとセッターを生成していないようです。 – Pau
私の個人的な経験のために、ロンボクゲッターズ/セッターズの注釈は完全に機能しますが、データにエラーの問題が生じることがあります。ゲッター/セッターをプロパティレベルで使用することをお勧めします – cralfaro
答えていただきありがとうございます。ロンボクはうまく構成されていない – user3172755