Skip to content
Snippets Groups Projects

Draft: Load configuration via Quarkus, but just for a test function

Open Benedikt Wetzel requested to merge wetzel/spesb:238-load-constants-via-quarkus into main
3 files
+ 31
0
Compare changes
  • Side-by-side
  • Inline
Files
3
 
package theodolite.util
 
 
import org.eclipse.microprofile.config.inject.ConfigProperty
 
import javax.enterprise.context.ApplicationScoped
 
 
@ApplicationScoped
 
class ConfigurationLoader {
 
 
@ConfigProperty(name = "namespace")
 
val namespace: String? = null
 
}
 
\ No newline at end of file
Loading