Ignore:
Timestamp:
01/04/23 02:49:26 (18 months ago)
Author:
andrejtodorovski <82031894+andrejtodorovski@…>
Branches:
main
Children:
ab952ab
Parents:
6832924
Message:

Configured spring security, changed spring version

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/com/example/autopartz/repository/PartsForCarTypeAndCategoryRepository.java

    r6832924 rae042f4  
    22
    33import com.example.autopartz.model.views.PartsForCarTypeAndCategory;
    4 import jakarta.transaction.Transactional;
    54import org.springframework.data.jpa.repository.JpaRepository;
    65import org.springframework.stereotype.Repository;
    76
     7import javax.transaction.Transactional;
    88import java.util.List;
    99
    1010@Repository
    1111@Transactional
    12 public interface PartsForCarTypeAndCategoryRepository extends JpaRepository<PartsForCarTypeAndCategory,Long> {
     12public interface PartsForCarTypeAndCategoryRepository extends JpaRepository<PartsForCarTypeAndCategory,Integer> {
    1313    List<PartsForCarTypeAndCategory> findAllByCartypeAndCategory(String cartype, String category);
    1414}
Note: See TracChangeset for help on using the changeset viewer.