实例
public interface UserRoleDao extends JpaRepository<UserRole, Long> {
@Modifying
@Query(value = "INSERT INTO user_role (id, userid,roleid) " +
"VALUES (func_nextid('user_role'),?1, ?2)", nativeQuery=true)
void insert(Long userId, Integer roleId);
}
加上transaction调用
@Test
@Transactional("demoTransactionManager")
public void testInsert(){
Long rs = userRoleDao.insert(232L,123);
System.out.println("result:"+rs);
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。