Getting Users / Deployment, AWS SES Setup
Get List of USers GET : localhost:8080/users?page=1&limit=50 (passed as url query parameter) @RequestParam is more useful on a traditional web application where data is mostly passed in the query abatements while @PathVariable is more suitable for RESTful web services where URL contains values e.g. http://localhost:8080/book/9783827319333, here data, which is ISBN number is part of URI. 1. controller getUSers 2. service 3. repository 4. postman LOGIN -> GET with the above url WITH or WITHOUT limit Deploying an app in remote server using maven 1. Go to properties after right clicking the project. 2. Check the loaction of the project 3. In your Command line, go to the above location ex) cd D:\t-projects\je\workspace\firstProject 4. type 'dir' to list the files contained. you should see 'pom.xml' in the root folder of the project, which means you can use maven command to run the app without using spring tool su...