javascript
spring boot 注解配置文件自动映射到属性和实体类 -凯发k8官方网
凯发k8官方网官网给出的配置文件大全:
https://docs.spring.io/spring-boot/docs/2.1.0.build-snapshot/reference/htmlsingle/#common-application-properties
1.配置文件自动映射到属性
步骤1:controller上面配置 @propertysource({"classpath:xxxx.properties"})
步骤2:属性上增加注解
承接上文的例子:https://www.cnblogs.com/jwen1994/p/11184566.html
我们通过配置文件设置上传文件存放的地址,而不是通过硬编码的方式
注意加粗的部分
@controller @propertysource({"classpath:application.properties"}) public class filecontroller {@value("${web.file.path}")private static final string filepath = "f:/ideaprojects/springbootdemo/src/main/resources/static/images/";@requestmapping(value = "upload")@responsebodypublic jsondata upload(@requestparam("head_img") multipartfile file, httpservletrequest request) {//file.isempty(); 判断图片是否为空//file.getsize(); 图片大小进行判断 string name = request.getparameter("name");system.out.println("用户名:" name);// 获取文件名string filename = file.getoriginalfilename(); system.out.println("上传的文件名为:" filename);// 获取文件的后缀名,比如图片的jpeg,pngstring suffixname = filename.substring(filename.lastindexof("."));system.out.println("上传的后缀名为:" suffixname);// 文件上传后的路径filename = uuid.randomuuid() suffixname;system.out.println("转换后的名称:" filename);file dest = new file(filepath filename);try {file.transferto(dest);return new jsondata(0, filename);} catch (illegalstateexception e) {e.printstacktrace();} catch (ioexception e) {e.printstacktrace();}return new jsondata(-1, "fail to save ", null);}}
2.实体类配置文件
步骤1:添加 @component 注解。(为了让 spring boot 扫描成一个 bean)
步骤2:使用 @propertysource 注解指定配置文件位置。
步骤3:使用 @configurationproperties 注解,设置相关属性。
步骤4:必须通过注入 ioc 对象,才能在类中使用获取的配置文件值。
类文件如下:
import org.springframework.beans.factory.annotation.value; import org.springframework.boot.context.properties.configurationproperties; import org.springframework.context.annotation.propertysource; import org.springframework.stereotype.component;//服务器配置 @component @propertysource({"classpath:application.properties"}) @configurationproperties public class serversettings {@value("${test.appname}")private string name;@value("${test.domain}")private string domain;//省略getter、setter方法 }@configurationproperties 可以设置前缀,如果设置了前缀,@value 就可以不写前缀,修改后的代码如下所示。
import org.springframework.beans.factory.annotation.value; import org.springframework.boot.context.properties.configurationproperties; import org.springframework.context.annotation.propertysource; import org.springframework.stereotype.component;//服务器配置 @component @propertysource({"classpath:application.properties"}) @configurationproperties(prefix="test")//设置前缀 public class serversettings {@value("${appname}")private string name;@value("${domain}")private string domain;//省略getter、setter方法 }如果不写@value,那么属性值就得和配置文件里的 key 一样。
类文件如下:
import org.springframework.beans.factory.annotation.value; import org.springframework.boot.context.properties.configurationproperties; import org.springframework.context.annotation.propertysource; import org.springframework.stereotype.component;//服务器配置 @component @propertysource({"classpath:application.properties"}) @configurationproperties public class serversettings {private string name;private string domain;//省略getter、setter方法 }获取这个对象信息
@autowired//必须通过ioc依赖注入,才能获取这个对象的值 private serversettings serversettings;@getmapping("/v1/test_properties") public object testperoperties(){return serversettings; }
常见问题:
1)配置文件注入失败,could not resolve placeholder
解决:根据 spring boot 启动流程,会有自动扫描包没有扫描到相关注解,,默认 spring 框架实现会从声明 @componentscan 所在的类的 package 进行扫描,来自动注入,因此启动类最好放在根路径下面,或者指定扫描包范围 spring boot 扫描启动类对应的目录和子目录
2)注入 bean 的方式,属性名称和配置文件里面的 key一一对应,就不用加@value 这个注解,如果不一样,就要加 @value("${xxx}")
转载于:https://www.cnblogs.com/jwen1994/p/11185514.html
总结
以上是凯发k8官方网为你收集整理的spring boot 注解配置文件自动映射到属性和实体类的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇:
- 下一篇: