application.properties配置文件

  springboot初体验中,项目初始建立一个空的application.propertis文件:

  application.properties配置文件

  spring boot项目启动时会自动加载这个配置文件。那么这个文件的作用是什么呢?

  这个文件中可以定义spring boot项目相关的属性,可以是系统属性、环境属性、命令参数等,也可以是自定义配置文件名称和位置,如数据库驱动 配置等。

  具体使用演示如下:

  1、准备两个实体类:学生Student、课程Course

  application.properties配置文件

 

   application.properties配置文件

 

   2、打开application.properties配置文件,在该文件中Student类属性进行赋值:

  application.properties配置文件

 

   在编写配置文件的过程中,由于student自定义,spring boot无法自动识别不会有任何提示。在实际开发中为了有代码提示,可以配置spring boot提供的配置处理器依赖:

  application.properties配置文件

  再次编写application.properties出现如下提示效果:

  application.properties配置文件

 

   3、测试配置是否正确并生效

  测试案例:

  application.properties配置文件

 

   测试结果:

application.properties配置文件

 

   结果打印出来,但是乱码。怎么解决?参考https://blog.csdn.net/sy_bz/article/details/108727267,实践可行。

  application.properties配置文件

 

 

  

 

application.properties配置文件

上一篇:复现ACL2020TextING时报错ValueError: operands could not be broadcast together with remapped shapes [original->remapped]: (2,2) and requested shape (1,2)


下一篇:uni-app 图片预览