Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. @Repository
  2. public interface DualRepository extends JpaRepository<Dual,Long> {
  3. @Modifying
  4. @Query(? - what goes here - ?)
  5. public int modifyingQueryInsertPerson(@Param("id")Long id, @Param("name")String name, @Param("age")Integer age);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement