public class XmlwebData { @SuppressLint("UseValueOf") public static List<Person> getData(String path) throws Exception { URL url=new URL("http://192.168.5.10:8080/FileServer/person.xml"); Person person=null; List<Person> pe…
Spring 获取propertise文件中的值 Spring 获取propertise的方式,除了之前的博文提到的使用@value的注解注入之外,还可以通过编码的方式获取,这里主要说的是要使用EmbeddedValueResolverAware接口的使用. 一.准备propertise文件 在资源文件夹下面建立好要测试需要的app.propertise文件,里面写几条测试数据,本文主要如图数据. 二.准备配置文件 <?xml version="1.0" encoding=&qu…