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

com.github.saphyra.randwo.common.configuration.BeanConfig Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.github.saphyra.randwo.common.configuration;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import com.github.saphyra.util.IdGenerator;
import com.github.saphyra.util.Random;

@Configuration
public class BeanConfig {
    @Bean
    public IdGenerator idGenerator() {
        return new IdGenerator();
    }

    @Bean
    public Random random() {
        return new Random();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy