Change package name

This commit is contained in:
YuCheng Hu 2019-05-31 10:09:22 -04:00
parent 38e273a5cb
commit fb27267073
5 changed files with 5 additions and 9 deletions

View File

@ -1,4 +1,4 @@
package hello;
package us.cwiki.spring.batch.processing;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@ -1,9 +1,8 @@
package hello;
package us.cwiki.spring.batch.processing;
import javax.sql.DataSource;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecutionListener;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing;
import org.springframework.batch.core.configuration.annotation.JobBuilderFactory;
@ -15,13 +14,10 @@ import org.springframework.batch.item.database.builder.JdbcBatchItemWriterBuilde
import org.springframework.batch.item.file.FlatFileItemReader;
import org.springframework.batch.item.file.builder.FlatFileItemReaderBuilder;
import org.springframework.batch.item.file.mapping.BeanWrapperFieldSetMapper;
import org.springframework.batch.item.file.mapping.DefaultLineMapper;
import org.springframework.batch.item.file.transform.DelimitedLineTokenizer;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.ClassPathResource;
import org.springframework.jdbc.core.JdbcTemplate;
@Configuration
@EnableBatchProcessing

View File

@ -1,4 +1,4 @@
package hello;
package us.cwiki.spring.batch.processing;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

View File

@ -1,4 +1,4 @@
package hello;
package us.cwiki.spring.batch.processing;
public class Person {

View File

@ -1,4 +1,4 @@
package hello;
package us.cwiki.spring.batch.processing;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;