Producer app
EmployeeController
package com.example.demo.controller;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.example.demo.entity.Employee;
@RestController
@RequestMapping("/employee")
public class EmployeeController {
@PostMapping("/save")
public ResponseEntity<Employee> saveEmp(@RequestBody Employee emp){
return new ResponseEntity<Employee>(emp,HttpStatus.OK);
}
}
Employee
package com.example.demo.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Employee {
private Integer id;
private String name;
}
application.properties
spring.application.name=ProducerApp
server.port=8081
Consumer App
Employee
package com.example.demo.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Employee {
private Integer id;
private String name;
}
EmployeeTestRunner
package com.example.demo.runner;
import org.springframework.boot.CommandLineRunner;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestTemplate;
import com.example.demo.entity.Employee;
@Component
public class EmployeeTestRunner implements CommandLineRunner{
@Override
public void run(String... args) throws Exception {
//String url
String url = "http://localhost:8081/employee/save";
HttpHeaders header = new HttpHeaders();
header.setContentType(MediaType.APPLICATION_JSON);
String body = "{\"id\":101,\"name\":\"sam\"}";
HttpEntity<String> entity = new HttpEntity<String>(body,header);
RestTemplate rt = new RestTemplate();
//make http call
ResponseEntity<Employee> response = rt.postForEntity(url, entity, Employee.class);
System.out.println(response.getBody());
}
}
Top comments (0)