mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Move into ebean-spring-txn subdirectory
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package org.example;
|
||||
|
||||
/**
|
||||
* The Interface UserService.
|
||||
*/
|
||||
public interface UserService {
|
||||
|
||||
void save(User user);
|
||||
|
||||
User find(long id);
|
||||
|
||||
User findNoCurrentTransaction(long id);
|
||||
|
||||
void nonTransactional();
|
||||
|
||||
void batchInsert();
|
||||
|
||||
void requiresNew();
|
||||
}
|
||||
Reference in New Issue
Block a user