Good afternoon, tell me, please, what should I add to the existing Spring MVC maven project in order to get the Spring Boot project? Thank.
2 answers
And what do you want to get in the end? What do you need / miss from Spring Boot?
Most likely you will need to add:
- class c with
main()method and various annotations - plugin for assembly
- inherit from their parent artifact
- add starters to taste
And, of course, all this and even many, many more are in their documentation: http://docs.spring.io/spring-boot/docs/1.3.x/reference/html/getting-started-first-application.html
- Strange thing ... There is my project that works, just through tomket. I add all of the above and ... Exception in thread "main" ) V from class org.springframework.boot.bind.RelaxedConversionService I want to get a program for launching without having to go to Tomcat (for educational purposes only). - Nikolay Egorov
- This is another question, as I understand it. - Slava Semushin
- This is yes, but you can help in it? I did it from the very beginning according to the documentation, but I can't start it - Nikolay Egorov
- The most important thing I can do to help you is to instill the idea that you first need to google and also need to read the documentation. Here, I have just found an answer to StackOverflow from your mistake. - Slava Semushin
|
Now this Exception: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSourceInitializerPostProcessor': Injection of autowired dependencies failed
|