我想通過使用Feign客戶端實現回退,但沒有獲得成功。其最簡單的代碼請在下面找到。 主類 @SpringBootApplication
@EnableDiscoveryClient
@RestController
@EnableFeignClients
public class EurekaClient1Application {
@Autowired
public
我需要爲此json對象創建一個bean。 { "user_name" : "my-name" }
我的java類是這樣的。 public class User {
String username;
}
是否有任何註釋映射到username不user_name改變的字段名user_name?像@JsonProperty(name="user_name")?