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

com.fastjrun.service.BaseService Maven / Gradle / Ivy

There is a newer version: 4.2.5
Show newest version
/*
 * Copyright (C) 2019 fastjrun, Inc. All Rights Reserved.
 */
package com.fastjrun.service;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.MessageSource;

import javax.annotation.Resource;

public abstract class BaseService {

    protected final Logger log = LoggerFactory.getLogger(this.getClass());

    @Resource
    protected MessageSource serviceMessageSource;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy