springboot-3-springboot中引入xml文件

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

1, mongdb的配置文件: 

 



    
    
    
    
     
    
    
         
    
    
    
    
    
       
    

 

资源文件: 

 

mongo.host=www.wenbronk.com
mongo.port=27017
mongo.connectionsPerHost=8
mongo.threadsAllowedToBlockForConnectionMultiplier=4
mongo.connectTimeout=1000
mongo.maxWaitTime=1500
mongo.autoConnectRetry=true
mongo.socketKeepAlive=true
mongo.socketTimeout=1500
mongo.slaveOk=true
mongo.writeNumber=1
mongo.riteTimeout=0
mongo.writeFsync=true

 

 

2, 将配置文件引入springboot

XMLSource.java   确保可以被入口程序扫描到

 

package com.iwhere;

import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;

/**
 * 将外部资源文件引入springboot中
 * 在入口类的可扫描环境下
 * 
 * @author wenbronk
 * @time 2017年4月6日  下午2:21:30  2017
 */
@Configuration
@ImportResource(locations={"classpath:mongodb/mongodb-context.xml"})
public class XMLSource {

    
}

 

然后在启动后, 就可以通过MongoTemplate来进行注入了

 

原文地址: http://412887952-qq-com.iteye.com/blog/2293846

转载于:https://my.oschina.net/maojindaoGG/blog/1605589

你可能感兴趣的:(springboot-3-springboot中引入xml文件)