标签:调用 str pre configure inf 步骤 yml rgs app
1.使用springBoot的好处:
传统基于maven搭建ssm项目(步骤繁琐):
使用springBoot后项目的搭建:
2.springBoot所必需的目录结构:
3.使用idea的spring Initializer生成springBoot项目:
4.springBoot的入口类(springBoot的项目通过启动类启动项目)
package com.yzy.spring_boot_test; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class SpringBootTestApplication { public static void main(String[] args) { SpringApplication.run(SpringBootTestApplication.class, args); } }
5.springBoot的配置文件:
有关于项目的配置信息都应写在该配置文件中(如:数据库的datasource,整合mybatis的配置)
注:配置文件的命名形式必须是:application.properties或是application.yml(最好使用yml,用法类似与json)
a. yml配置文件的使用:
b.springBoot配置文件常用的配置:
c.在配置文件中自定义属性以及通过@Value调用:
标签:调用 str pre configure inf 步骤 yml rgs app
原文地址:https://www.cnblogs.com/shouyaya/p/13081143.html