Hello! I have a couple of questions, hopefully one...
# spring
z
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:
Copy code
Rooms
- A class that will allow an api consumer to interact with rooms
Copy code
RoomsController
- A domain specific class that I will use to do things with a room instance
Copy code
Room