java获取资源文件的各种方法

1.在test环境中获取xml:

@Test
    public void testFindUserById() throws Exception{        

        String resource = "SqlMapConfig.xml";
        //通过流将核心配置文件读取进来
        InputStream inputStream = Resources.getResourceAsStream(resource);

2.在非spring的xml文件中


    

3.springmvc中获取资源文件中的值

a.      springmvc.xml中

   

b.      CustomerController

@Controller

@RequestMapping("/customer")

public class CustomerController {
    
    @Autowired
    private CustomerService customerService;
    
    @Value("${customer.dict.source}")
    private String source;

你可能感兴趣的:(java)