Skip to content

Instantly share code, notes, and snippets.

package com.example.demo.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.example.demo.model.Event;
@Repository
public interface EventRepository extends JpaRepository<Event, Long>{