Package org.springframework.data.repository.invoker

Examples of org.springframework.data.repository.invoker.RepositoryInvoker.invokeSave()


   */
  private void persist(Object object, RepositoryInvokerFactory invokerFactory) {

    RepositoryInvoker invoker = invokerFactory.getInvokerFor(object.getClass());
    LOGGER.debug(String.format("Persisting %s using repository %s", object, invoker));
    invoker.invokeSave(object);
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.