Created
October 23, 2017 17:20
-
-
Save JacopoMangiavacchi/493b392c15701cab85c76a2fda6fdc9e to your computer and use it in GitHub Desktop.
Java - Spring Rest Test : <- Post <- Request <- Get
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package javatest; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import com.fasterxml.jackson.databind.annotation.JsonDeserialize; | |
import org.springframework.web.bind.annotation.RequestMapping; | |
import org.springframework.web.bind.annotation.RestController; | |
import org.springframework.web.bind.annotation.RequestMethod; | |
import org.springframework.web.bind.annotation.RequestBody; | |
import org.springframework.web.client.RestTemplate; | |
@JsonDeserialize | |
class Language { | |
private String language; | |
public Language() {}; | |
public Language(String language) { | |
this.language = language; | |
} | |
public String getLanguage() { | |
return language; | |
} | |
public void setLanguage(String language) { | |
this.language = language; | |
} | |
} | |
@JsonDeserialize | |
class Request { | |
private String url; | |
public Request() {}; | |
public Request(String url) { | |
this.url = url; | |
} | |
public String getUrl() { | |
return url; | |
} | |
public void setUrl(String url) { | |
this.url = url; | |
} | |
} | |
@SpringBootApplication | |
public class Application { | |
public static void main(String[] args) { | |
SpringApplication app = new SpringApplication(Application.class); | |
System.getProperties().put( "server.port", 8060); | |
app.run(args); | |
} | |
} | |
@RestController | |
class LanguageController { | |
@RequestMapping("/language") | |
public Language language() { | |
return new Language("Java"); | |
} | |
@RequestMapping(value="/request", method=RequestMethod.POST) | |
public Language request(@RequestBody Request request) { | |
RestTemplate restTemplate = new RestTemplate(); | |
Language language = restTemplate.getForObject(request.getUrl(), Language.class); | |
return new Language(language.getLanguage()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment