Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
import org.junit.Test; | |
import org.springframework.beans.BeanWrapper; | |
import org.springframework.beans.BeanWrapperImpl; | |
import org.springframework.core.io.Resource; | |
import org.springframework.core.io.support.PathMatchingResourcePatternResolver; | |
import org.springframework.retry.support.RetryTemplate; | |
import org.springframework.util.FileCopyUtils; | |
import org.springframework.util.FileSystemUtils; | |
import org.springframework.web.client.RestTemplate; |
import org.hibernate.cfg.Configuration; | |
import org.hibernate.cfg.ImprovedNamingStrategy; | |
import org.hibernate.dialect.Dialect; | |
import org.hibernate.dialect.H2Dialect; | |
import org.hibernate.tool.hbm2ddl.SchemaExport; | |
import org.springframework.core.io.Resource; | |
import org.springframework.core.io.support.PathMatchingResourcePatternResolver; | |
import org.springframework.core.type.classreading.MetadataReader; | |
import org.springframework.core.type.classreading.SimpleMetadataReaderFactory; | |
import org.springframework.util.FileCopyUtils; |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/