Spring-boot applicationDatasource.xml не читает из внешних свойств - PullRequest
0 голосов
/ 08 июля 2019

Я пытаюсь прочитать данные JNDI из внешних свойств, но, видимо, он не может их прочитать.

Я пробовал это:

<jee:jndi-lookup id="clarifyDS" jndi-name="${bd.clarify.jndi}"
        lookup-on-startup="false" proxy-interface="javax.sql.DataSource" />

Но выдает следующую ошибку.

SERVER: AdminServer [ERROR] [08-07-2019 14:16:18.088] (ClarifyDaoImpl.java:120) - [ obtenerColasAsoc idTx= ] - [obtenerColasAsoc]JndiObjectTargetSource failed to obtain new target object; nested exception is javax.naming.NameNotFoundException: While trying to lookup '${bd.clarify.jndi}' didn't find subcontext '${bd'. Resolved ''; remaining name '${bd/clarify/jndi}'-org.springframework.jndi.JndiLookupFailureException: JndiObjectTargetSource failed to obtain new target object; nested exception is javax.naming.NameNotFoundException: While trying to lookup '${bd.clarify.jndi}' didn't find subcontext '${bd'. Resolved ''; remaining name '${bd/clarify/jndi}'

Мне нужно только имя источника данных, поскольку оно настраивается на сервере weblogic.Нет необходимости для пользователя или пароля.

Вот полные файлы

applicationContext.xml

<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans          
                           http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
                           http://www.springframework.org/schema/aop          
                           http://www.springframework.org/schema/aop/spring-aop-3.1.xsd          
                           http://www.springframework.org/schema/context          
                           http://www.springframework.org/schema/context/spring-context-3.1.xsd        
                           http://www.springframework.org/schema/jee
                           http://www.springframework.org/schema/jee/spring-jee-3.1.xsd">

    <context:annotation-config />
    <context:component-scan base-package="pe.com.claro.postventa.consultacolas" />
    <context:property-placeholder location="file:${file.properties}ConsultaColas/.properties" />

    <import resource="applicationDatasource.xml" />

</beans>

applicationDatasoruce.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans  
       http://www.springframework.org/schema/beans/spring-beans-3.1.xsd  
       http://www.springframework.org/schema/tx 
       http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
       http://www.springframework.org/schema/util 
       http://www.springframework.org/schema/util/spring-util-3.1.xsd
       http://www.springframework.org/schema/aop  
       http://www.springframework.org/schema/aop/spring-aop-3.1.xsd  
       http://www.springframework.org/schema/context  
       http://www.springframework.org/schema/context/spring-context-3.1.xsd
       http://www.springframework.org/schema/jee
       http://www.springframework.org/schema/jee/spring-jee-3.1.xsd">

    <jee:jndi-lookup id="clarifyDS" jndi-name="${bd.clarify.jndi}"
        lookup-on-startup="false" proxy-interface="javax.sql.DataSource" />

</beans>

Здесьмой класс Java.

@Repository
public class ClarifyDaoImpl implements ClarifyDao{

    private static final Logger logger = Logger.getLogger(ClarifyDaoImpl.class);

    @Autowired
    @Qualifier(value = "clarifyDS")
    private DataSource clarifyDS;

    @Autowired
    Propiedades propiedades;

    private Utilitarios utilitarios = new Utilitarios();

    @Override
    public ObtenerColasAsocResponseBean obtenerColasAsoc(String mensajeTransaccion, ObtenerColasAsocRequestBean request)
            throws DBException {

        //Do something
    }

}

Возможно, я не использую правильный синтаксис для чтения файла свойств

Кстати, я не уверен, что это лучший способ установки выражения длябазу данных, если кто-то знает лучший способ, я был бы рад услышать.

Спасибо!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...