适用于国家,州和城市的Java RestApi

时间:2017-06-09 07:14:41

标签: java

我正在搜索超过三天,但我得到任何解决方案。我需要在国家州和城市的java中使用restApi,就像我选择国家时它给我状态,当选择状态时它给了我所有的它下面的城市。但我不想在这种情况下使用GoogleApi。任何人都可以帮我这个。我需要一个stratch。

1 个答案:

答案 0 :(得分:0)

@RestController
@RequestMapping("Angular")
public class Rest
{
    @Autowired
    CountryRepository countryRepository;

    @RequestMapping(value="/create") //, method=RequestMethod.POST,consumes="application/json"
    public Country create(Country country){
        country.setCreatedDate(new Date());
        country = countryRepository.save(country);
        return country;
    }

    @RequestMapping(value ="/read") //, method = RequestMethod.GET, produces = "application/json" 
    public Country read(@RequestParam Long country_id){
        Country country = countryRepository.findOne(country_id);
        return country;
    }
}