Yogender Sharma

Results 4 issues of Yogender Sharma

In the Java controllers the @RequestMappings are to be replaced with @GetMapping @PostMappings @PutMappings @DeleteMapping to make code more readable and short . ` @ApiOperation("编辑活动") @RequestMapping(value = "/update/{id}", method =...

Summary: This contribution adds new request mappings for various HTTP methods (GET, POST, PUT, DELETE) in the project. Details: - Added GET mappings to retrieve resource information. - Added POST...

Updated all of the request Mappings with Post and Get Mappings in the mall-admin controllers .

Update EdgeChainApplication.java 1) Added constructor : It is better to use constructor injection rather than using Autowired annotation. It makes it testable. 2) Make the pineconeservice as final. 3) Returning...