springboot教程书(spring boot教程)

导读 你们好,最近小活发现有诸多的小伙伴们对于springboot教程书,spring boot教程这个问题都颇为感兴趣的,今天小活为大家梳理了下,一起往下

你们好,最近小活发现有诸多的小伙伴们对于springboot教程书,spring boot教程这个问题都颇为感兴趣的,今天小活为大家梳理了下,一起往下看看吧。

1、 首先创建一个简单的java maven项目(非web项目)。如果你不知道,请看这里:

2、 https://jingyan.baidu.com/article/425e69e6065480be15fc16cf.html

3、 配置pom.xml

4、 创建spring boot入口类

5、 即使成功建立了spring boot程序,也有两种方法运行它。

6、 The first type: In the hello application class, right click —— to run the As——Java application.

7、 第二种:使用pom.xml中配置的spring boot插件,如下图。

8、 结论:第一个简单熟悉。

9、 关于@ springbootappication,这是一个组合评论,主要包括:

10、 @SpringBootConfiguration (including @ configuration) is also a combined comment.

11、 Replace @ Configuration in Spring Boot Project

12、 ,

13、 这个注释将使您看到maven的依赖性。

14、 你可以看到有一个

15、 ,

16、 比如我们添加了spring-boot-starter-web,SpringMVC就被自动引入到项目中。

17、 相关罐子,

18、 @ComponentScan,默认扫描@SpringBootApplication所在类目录

19、 及其子目录

20、 @SpringBootApplication的属性:

21、 如果我们在项目中引入solrj相关的包,spring boot会自动为我们创建solr。

22、 的相关bean,但有时候我们希望自己配置bean,这时可以这样:

23、 @SpringBootApplication(exclude={SolrAutoConfiguration.class})

24、 这样就可以自己写java spring 配置类或xml,配置solr的相关bean了

25、 同样的,如果你不想引入Spring Boot默认的依赖,

26、 可以在pom.xml中使用标签,看下图:

27、 Spring Boot 项目使用一个或者是

28、 ,一般都在下,可用设置我们的自定义配置,比如:我们要把tomcat端口号修改为8888,

29、 在application.properties写入server.port=8888

30、 更多配置,参考:

31、 https://jingyan.baidu.com/article/4f7d5712f419391a2119276d.html

以上就是spring boot教程这篇文章的一些介绍,希望对大家有所帮助。

标签:

免责声明:本文由用户上传,如有侵权请联系删除!