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

com.firefly.example.kotlin.coffee.store.utils.ResourceUtils.kt Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.example.kotlin.coffee.store.utils

import com.firefly.annotation.Component
import com.firefly.utils.io.ClassRelativeResourceLoader
import com.firefly.utils.io.Resource

/**
 * @author Pengtao Qiu
 */
@Component
class ResourceUtils {

    private val resourceLoader = ClassRelativeResourceLoader(javaClass)

    fun resource(path: String): Resource {
        return resourceLoader.getResource(path)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy