We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6646946 commit fcaeb62Copy full SHA for fcaeb62
user-service/src/main/java/com/cevher/ms/user/service/UserService.java
@@ -31,7 +31,7 @@ public ResponseTempVM getUserWithDepartment(Long userId) {
31
ResponseTempVM vm = new ResponseTempVM();
32
User user = userRepository.findById(userId).orElse(new User());
33
34
- // TODO : tot for production.
+ // TODO : not for production, you should use config and common class or method.
35
// TODO : We can use Message Broker for example Apache Kafka
36
DepartmentVM department = restTemplate.getForObject(
37
//"http://localhost:9001/departments/" + user.getDepartmentId()
0 commit comments