Skip to content

Instantly share code, notes, and snippets.

@MirkoRossini
Created September 28, 2016 19:15
Show Gist options
  • Save MirkoRossini/19a7b0a78eda9a9e4c18423ddaa2d10d to your computer and use it in GitHub Desktop.
Save MirkoRossini/19a7b0a78eda9a9e4c18423ddaa2d10d to your computer and use it in GitHub Desktop.
package com.mirkorossini.transactionaltest.mappers;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Param;
public interface DummyMapper {
@Insert("insert into dummytable values (#{value})")
void insertRecord(@Param("value") int value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment