Guest User

Untitled

a guest
Jan 16th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. @XmlRootElement
  2. public class JerseyObject implements Serializable {
  3.  
  4. String name;
  5. }
  6.  
  7. @Controller
  8. @RequestMapping("/sample")
  9. public class SampleController {
  10.  
  11. @GetMapping(produces = MediaType.APPLICATION_XML_VALUE)
  12. public ResponseEntity<JerseyObject> get() {
  13. return ResponseEntity.ok(new JerseyObject("Name"));
  14. }
  15. }
  16.  
  17. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  18. <jerseyObject>
  19. <name>Name</name>
  20. </jerseyObject>
Add Comment
Please, Sign In to add comment