Hello! I have a couple of questions, hopefully one of you experienced spring devs can help:
1) Is there a recommended folder structure for a rest api project?
2) Naming guidelines:
Let’s say that I want to represent a chat room, does the following make sense or would you modify it somehow?
- My data access object representing the database table:
Rooms
- A class that will allow an api consumer to interact with rooms
RoomsController
- A domain specific class that I will use to do things with a room instance
Room