Spring Boot JNDI:Spring Boot中怎么玩JNDI

@Bean
    public DataSource masterDataSource() throws IllegalArgumentException, NamingException {
        JndiObjectFactoryBean bean = new JndiObjectFactoryBean();
        bean.setJndiName("jdbc/test");
        bean.setProxyInterface(DataSource.class);
        bean.setLookupOnStartup(false);
        bean.setResourceRef(true);
        bean.afterPropertiesSet();
        return (DataSource) bean.getObject();
    }

tomcat 中context.xml配置java

<Resource name="jdbc/test" 
	auth="Container" 
	driverClassName="com.mysql.jdbc.Driver"
    url="jdbc:mysql://locahlhost:3306/test?useUnicode=true&amp;characterEncoding=utf8&amp;zeroDateTimeBehavior=convertToNull&amp;useSSL=true"
	username="supbaoxuan" 
	password="root" 
	testOnBorrow="true" 
	type="javax.sql.DataSource"
    initialSize="3" 
	maxIdle="10" 
	maxTotal="15" 
	maxWaitMillis="30000" 
	minIdle="3"  
    validationQuery="select 'X'"/>

Spring Boot 2.0版本怎么玩呢?mysql

 打包成war包spring

       经过上一篇文章,咱们能够把配置放到tomcat/conf/context.xml里,那么在Spring Boot中,咱们只要配置jndi指向的名称就能够了,对于这个点的,Spring Boot仍是提供了相应的配置的,在application.properties添加以下配置:sql

spring.datasource.jndi-name=jdbc/testtomcat

相关文章
相关标签/搜索