• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

does Spring Quickly help someone to understand better Spring Boot and gives examples about it?

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I used Spring a lot in my work projects but I am yet to familiarize and understand better how to use Spring Boot properly to create a personal project faster from the ground up; does Spring Quickly help someone to understand better Spring Boot and gives examples about it?
 
Author
Posts: 66
5
Spring Java
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Dragos. Even if Spring Quickly is not a book designed expecially for Spring Boot, you will find nice examples with Spring Boot starting with chapter 7. Hopefully they're good enough to make even a beginner understand Spring Boot projects and the very basics of them At least I try my best!
 
Dragos Pavel
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you, I observed your other reply for the persistence post and I have one more question please: so in what situations or use cases do you recommend to use NoSQL with MongoDB as an implementation and Spring Data?  (over the other more traditional persistence options let's say)
 
Laurentiu Spilca
Author
Posts: 66
5
Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A difficult question to answer in a comment post, Dragos. Thanks for such awesome questions. I actually have a full course lecture in my software architecture course to discuss this topic. Mainly to answer you, it depends a lot on:

- the data model you have
- how much do you care about consistency
- how much do you care about availability
- how much do you care about performance

Then you might decide to use SQL or NoSQL, and mind that NoSQL is not only one implementation. When you decide for NoSQL you have several options. For example you might decide to use MongoDB because your data is modeled as documents, or you might prefer Neo4J because a graph approach fits better to the structure of your data
 
Joel Salatin has signs on his property that say "Trespassers will be Impressed!" Impressive tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic