mudandça da constante do cache feat bug #AL-3714' (!376) from AL-3714 into master

Reviewed-on: adm/VentaBoletosAdm#376
Reviewed-by: wallace <wallace@rjconsultores.com.br>
Reviewed-by: Gleison da Cruz <gleison.cruz@totvs.com.br>
master 1.48.0
fabio 2024-02-01 20:21:11 +00:00
commit e8d3f2136a
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>
<artifactId>ventaboletosadm</artifactId> <artifactId>ventaboletosadm</artifactId>
<version>1.47.1</version> <version>1.48.0</version>
<packaging>war</packaging> <packaging>war</packaging>
<properties> <properties>

View File

@ -150,7 +150,7 @@ public class LimparCacheApiController extends MyGenericForwardComposer {
private String[] getURLSAPI() { private String[] getURLSAPI() {
ApplicationContext appContext = AppContext.getApplicationContext(); ApplicationContext appContext = AppContext.getApplicationContext();
ConstanteService constanteService = (ConstanteService) appContext.getBean("constanteService"); ConstanteService constanteService = (ConstanteService) appContext.getBean("constanteService");
String constante = constanteService.buscarURLAPI(); String constante = constanteService.buscarURLAPIEmb();
return constante == null ? null : constante.split("\\|"); return constante == null ? null : constante.split("\\|");
} }