Package io.ebean

Class BeanRepository<I,​T>

  • Type Parameters:
    I - The ID type
    T - The Bean type

    public abstract class BeanRepository<I,​T>
    extends BeanFinder<I,​T>
    Provides finder functionality for use with "Dependency Injection style" use of Ebean.

    {@code
    • Method Detail

      • markAsDirty

        public void markAsDirty​(T bean)
        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:
        Database.markAsDirty(Object)
      • markPropertyUnset

        public void markPropertyUnset​(T bean,
                                      String propertyName)
        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

        public void save​(T bean)
        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:
        Database.save(Object)
      • saveAll

        public int saveAll​(Collection<T> bean)
        Save all the beans in the collection.
      • delete

        public boolean delete​(T bean)
        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:
        Database.delete(Object)
      • deletePermanent

        public boolean deletePermanent​(T bean)
        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:
        Database.deletePermanent(Object)
      • merge

        public void merge​(T bean)
        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:
        Database.merge(Object)
      • merge

        public void merge​(T bean,
                          MergeOptions options)
        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:
        Database.merge(Object, MergeOptions)