All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kie.kogito.examples.ConfigBean Maven / Gradle / Ivy

There is a newer version: 1.25.0.Final
Show newest version
package org.kie.kogito.examples;

@org.springframework.stereotype.Component
public class ConfigBean {

    @org.springframework.beans.factory.annotation.Value("${kogito.service.url:#{null}}")
    java.util.Optional kogitoService;

    public String getServiceUrl() {
        return kogitoService.orElse("");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy