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

ai.timefold.solver.spring.boot.autoconfigure.TimefoldSolverBannerBean Maven / Gradle / Ivy

Go to download

Timefold solves planning problems. This lightweight, embeddable planning engine implements powerful and scalable algorithms to optimize business resource scheduling and planning. This module contains the Spring Boot autoconfigure.

There is a newer version: 1.16.0
Show newest version
package ai.timefold.solver.spring.boot.autoconfigure;

import ai.timefold.solver.core.enterprise.TimefoldSolverEnterpriseService;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.stereotype.Component;

@Component
public class TimefoldSolverBannerBean implements InitializingBean {

    private static final Log LOG = LogFactory.getLog(TimefoldSolverBannerBean.class);

    @Override
    public void afterPropertiesSet() {
        LOG.info("Using Timefold Solver " + TimefoldSolverEnterpriseService.identifySolverVersion() + ".");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy