BAEL-5545: fixed import organization

This commit is contained in:
Elmar Mammadov 2022-07-30 14:27:43 +02:00
parent 5ea3e49db0
commit 95211496d2
5 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,7 @@
package com.baeldung.spring.jdbc.batch;
import com.baeldung.spring.jdbc.batch.service.ProductService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.CommandLineRunner;

View File

@ -3,6 +3,7 @@ package com.baeldung.spring.jdbc.batch.config;
import com.baeldung.spring.jdbc.batch.repo.BatchProductRepository;
import com.baeldung.spring.jdbc.batch.repo.SimpleProductRepository;
import com.baeldung.spring.jdbc.batch.service.ProductService;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;

View File

@ -1,6 +1,7 @@
package com.baeldung.spring.jdbc.batch.repo;
import com.baeldung.spring.jdbc.batch.model.Product;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;

View File

@ -1,6 +1,7 @@
package com.baeldung.spring.jdbc.batch.repo;
import com.baeldung.spring.jdbc.batch.model.Product;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;

View File

@ -2,6 +2,7 @@ package com.baeldung.spring.jdbc.batch.service;
import com.baeldung.spring.jdbc.batch.model.Product;
import com.baeldung.spring.jdbc.batch.repo.ProductRepository;
import org.springframework.transaction.annotation.Transactional;
import java.math.BigDecimal;