I don't know how to create a new project with spring initializr that contains @repository, @service, and @controller, for the controller dependency to exist it is necessary to check the following box, here is a screenshot:
but for the others, what should be marked?, or how do I add them manually
According to @luiggiMendoza's comment, the other 2 are from the core, but which framework?
The annotations you mention are inside the package
org.springframework.stereotype
found in the Spring Context library. This bookstore is part of the heart of Spring. That is, if you don't add this library, you simply can't work with Spring.In short, you don't need to tick a specific check to say that these libraries should be included. They are already added by default.