Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ConfigurationType.SYSTEM deveria converter property em variável de ambiente. #123

Open
reinaldovale opened this issue Feb 14, 2019 · 0 comments

Comments

@reinaldovale
Copy link

@Configuration(type = ConfigurationType.SYSTEM, prefix="meuprefixo")
@ApplicationScoped
public class MinhaConfig {	
	@ConfigurationName("seguranca.minha-config.esta_habilitada")
	private Boolean habilitarSeguranca = true;
  • Comportamento atual:
    Está procurando uma variável de ambiente com o nome:

meuprefixo.seguranca.minha-config.esta_habilitada

Porém não é possível criar uma variável de ambiente em sistemas baseado em linux com ponto(.), segue menságem:

$ export meuprefixo.seguranca.minha-config.esta_habilitada=true
bash: export: `meuprefixo.seguranca.minha-config.esta_habilitada=true': não é um identificador válido
  • Comportamento esperado:
    Deveria procurar a seguinte variável:

MEUPREFIXO_SEGURANCA_MINHA_DASH_CONFIG_ESTA_UNDERSCORE_HABILITADA

A documentação do Thorntail trata desse problema, segue link:

Application configuration using environment variables

#71

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant