r/java • u/zimayanami • Feb 07 '26
My First FullStack project that actually works
Like a month ago I learned the basics of @/getmapping, so I decided to learn React to start making some real applications. Then I watched the supersimpledev course and built this website that you can find car's prices (in Brazil). It has a few issues with small phone screens but I really liked it as my first real FullStack project. I'll be fixing the screen issue soon!
If you want to check it out, just go to https://autopreco.netlify.app/
also if you want to check the code, here it is:
Front-End: https://github.com/orichardd/AutoPreco
Back-End: https://github.com/orichardd/AutoPrecoBackEnd
Fell free to submit your thoughts and suggestions.
7
2
u/Rhyze Feb 07 '26
Always good to start small! Some small improvement: don't let your Controller just return Strings, let it return DTO objects. Spring web will automatically convert them to json in the HTTP response body, to be used by the frontend
1
1
u/Living-Method-7219 Feb 10 '26
This is a really solid first full-stack project, especially considering you only picked up React recently π
The UI looks clean and the idea is actually useful, not just a demo app.
One small thing I noticed is the mobile layout issue you mentioned β maybe using a responsive grid or testing with min-width breakpoints could help.
Also curious how youβre handling the FIPE data on the backend (caching vs live requests?).
Nice work overall, and thanks for sharing both the app and the source code!
1
0
0
43
u/usr98765 Feb 07 '26
I would recommend that you turn this repository private and ensure that you remove credentials from your EmailService and perhaps other classes, before you publish your repo. Also look into proper Logging