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

com.cq1080.config.repository.ConfigRepository Maven / Gradle / Ivy

package com.cq1080.config.repository;

import com.cq1080.config.bean.Config;
import com.cq1080.jpa.repository.BaseRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;

public interface ConfigRepository extends BaseRepository {

    @Query("select item from Config  item where name = :name")
    Config  findByName(@Param("name") String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy