- Type Parameters:
I
- The ID typeT
- The Bean type
@Repository
public class CustomerRepository extends BeanRepository<Long,Customer> {
@Inject
public CustomerRepository(Database server) {
super(Customer.class, server);
}
// ... add customer specific finders and persist logic
public List<Customer> findByName(String nameStart) {
return query().where()
.istartsWith("name", nameStart)
.findList();
}
}
-
Field Summary
Fields inherited from class io.ebean.BeanFinder
server, type
-
Constructor Summary
ModifierConstructorDescriptionprotected
BeanRepository
(Class<T> type, Database server) Create with the given bean type and Database instance. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Delete this bean.int
deleteAll
(Collection<T> beans) Delete all the beans in the collection.boolean
deletePermanent
(T bean) Delete a bean permanently without soft delete.void
Insert this entity.void
markAsDirty
(T bean) Marks the entity bean as dirty.void
markPropertyUnset
(T bean, String propertyName) Mark the property as unset or 'not loaded'.void
Merge this entity using the default merge options.void
merge
(T bean, MergeOptions options) Merge this entity using the specified merge options.void
Refreshes this entity from the database.void
Insert or update this entity depending on its state.int
saveAll
(Collection<T> bean) Save all the beans in the collection.void
Update this entity.Methods inherited from class io.ebean.BeanFinder
currentTransaction, db, db, deleteById, findAll, findById, findByIdOrEmpty, flush, nativeSql, query, query, ref, updateQuery
-
Constructor Details
-
BeanRepository
Create with the given bean type and Database instance.Typically users would extend BeanRepository rather than BeanFinder.
@Inject public CustomerRepository(Database server) { super(Customer.class, server); }
- Parameters:
type
- The bean typeserver
- The Database instance typically created via Spring factory or equivalent
-
-
Method Details
-
markAsDirty
Marks the entity bean as dirty.This is used so that when a bean that is otherwise unmodified is updated the version property is updated.
An unmodified bean that is saved or updated is normally skipped and this marks the bean as dirty so that it is not skipped.
Customer customer = customerRepository.byId(id); // mark the bean as dirty so that a save() or update() will // increment the version property customerRepository.markAsDirty(customer); customerRepository.save(customer);
- See Also:
-
markPropertyUnset
Mark the property as unset or 'not loaded'.This would be used to specify a property that we did not wish to include in a stateless update.
// populate an entity bean from JSON or whatever Customer customer = ...; // mark the email property as 'unset' so that it is not // included in a 'stateless update' customerRepository.markPropertyUnset(customer, "email"); customerRepository.update(customer);
- Parameters:
propertyName
- the name of the property on the bean to be marked as 'unset'
-
save
Insert or update this entity depending on its state.Ebean will detect if this is a new bean or a previously fetched bean and perform either an insert or an update based on that.
- See Also:
-
saveAll
Save all the beans in the collection. -
update
Update this entity.- See Also:
-
insert
Insert this entity.- See Also:
-
delete
Delete this bean.This will return true if the bean was deleted successfully or JDBC batch is being used.
If there is no current transaction one will be created and committed for you automatically.
If the Bean does not have a version property (or loaded version property) and the bean does not exist then this returns false indicating that nothing was deleted. Note that, if JDBC batch mode is used then this always returns true.
- See Also:
-
deleteAll
Delete all the beans in the collection. -
deletePermanent
Delete a bean permanently without soft delete.This is used when the bean contains a
@SoftDelete
property and we want to perform a hard/permanent delete.- See Also:
-
merge
Merge this entity using the default merge options.Ebean will detect if this is a new bean or a previously fetched bean and perform either an insert or an update based on that.
- See Also:
-
merge
Merge this entity using the specified merge options.Ebean will detect if this is a new bean or a previously fetched bean and perform either an insert or an update based on that.
- See Also:
-
refresh
Refreshes this entity from the database.- See Also:
-