79190981

Date: 2024-11-15 02:52:19
Score: 0.5
Natty:
Report link

@SpringBootApplication annotation comes with package scanning and all we don't need to repeat it. On your controllers, add requestpath separately as below,

@RestController()
@RequestMapping("/employees")
public class EmployeeController {
  // methods
}

However, if you add ```
@RestController("/employees")```

only to your controllers that won't work. 



Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @SpringBootApplication
Posted by: Lyju I Edwinson