Detab poms and source
This commit is contained in:
parent
5992da45b3
commit
fc8fc09804
10
README.md
10
README.md
@ -84,12 +84,8 @@ In a project directory of your choosing, create the following subdirectory struc
|
|||||||
<url>http://repo.springsource.org/libs-snapshot</url>
|
<url>http://repo.springsource.org/libs-snapshot</url>
|
||||||
<snapshots><enabled>true</enabled></snapshots>
|
<snapshots><enabled>true</enabled></snapshots>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
|
||||||
<id>spring-milestones</id>
|
|
||||||
<url>http://repo.springsource.org/libs-milestone</url>
|
|
||||||
<snapshots><enabled>true</enabled></snapshots>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<pluginRepositories>
|
<pluginRepositories>
|
||||||
<pluginRepository>
|
<pluginRepository>
|
||||||
<id>spring-snapshots</id>
|
<id>spring-snapshots</id>
|
||||||
@ -97,6 +93,7 @@ In a project directory of your choosing, create the following subdirectory struc
|
|||||||
<snapshots><enabled>true</enabled></snapshots>
|
<snapshots><enabled>true</enabled></snapshots>
|
||||||
</pluginRepository>
|
</pluginRepository>
|
||||||
</pluginRepositories>
|
</pluginRepositories>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -179,6 +176,7 @@ public class Person {
|
|||||||
public String toString() {
|
public String toString() {
|
||||||
return "firstName: " + firstName + ", lastName: " + lastName;
|
return "firstName: " + firstName + ", lastName: " + lastName;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -196,6 +194,7 @@ package hello;
|
|||||||
import org.springframework.batch.item.ItemProcessor;
|
import org.springframework.batch.item.ItemProcessor;
|
||||||
|
|
||||||
public class PersonItemProcessor implements ItemProcessor<Person, Person> {
|
public class PersonItemProcessor implements ItemProcessor<Person, Person> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Person process(final Person person) throws Exception {
|
public Person process(final Person person) throws Exception {
|
||||||
final String firstName = person.getFirstName().toUpperCase();
|
final String firstName = person.getFirstName().toUpperCase();
|
||||||
@ -207,6 +206,7 @@ public class PersonItemProcessor implements ItemProcessor<Person, Person> {
|
|||||||
|
|
||||||
return transformedPerson;
|
return transformedPerson;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -43,12 +43,8 @@
|
|||||||
<url>http://repo.springsource.org/libs-snapshot</url>
|
<url>http://repo.springsource.org/libs-snapshot</url>
|
||||||
<snapshots><enabled>true</enabled></snapshots>
|
<snapshots><enabled>true</enabled></snapshots>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
|
||||||
<id>spring-milestones</id>
|
|
||||||
<url>http://repo.springsource.org/libs-milestone</url>
|
|
||||||
<snapshots><enabled>true</enabled></snapshots>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<pluginRepositories>
|
<pluginRepositories>
|
||||||
<pluginRepository>
|
<pluginRepository>
|
||||||
<id>spring-snapshots</id>
|
<id>spring-snapshots</id>
|
||||||
@ -56,4 +52,5 @@
|
|||||||
<snapshots><enabled>true</enabled></snapshots>
|
<snapshots><enabled>true</enabled></snapshots>
|
||||||
</pluginRepository>
|
</pluginRepository>
|
||||||
</pluginRepositories>
|
</pluginRepositories>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
@ -33,4 +33,5 @@ public class Person {
|
|||||||
public String toString() {
|
public String toString() {
|
||||||
return "firstName: " + firstName + ", lastName: " + lastName;
|
return "firstName: " + firstName + ", lastName: " + lastName;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package hello;
|
|||||||
import org.springframework.batch.item.ItemProcessor;
|
import org.springframework.batch.item.ItemProcessor;
|
||||||
|
|
||||||
public class PersonItemProcessor implements ItemProcessor<Person, Person> {
|
public class PersonItemProcessor implements ItemProcessor<Person, Person> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Person process(final Person person) throws Exception {
|
public Person process(final Person person) throws Exception {
|
||||||
final String firstName = person.getFirstName().toUpperCase();
|
final String firstName = person.getFirstName().toUpperCase();
|
||||||
@ -14,4 +15,5 @@ public class PersonItemProcessor implements ItemProcessor<Person, Person> {
|
|||||||
|
|
||||||
return transformedPerson;
|
return transformedPerson;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -30,12 +30,8 @@
|
|||||||
<url>http://repo.springsource.org/libs-snapshot</url>
|
<url>http://repo.springsource.org/libs-snapshot</url>
|
||||||
<snapshots><enabled>true</enabled></snapshots>
|
<snapshots><enabled>true</enabled></snapshots>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
|
||||||
<id>spring-milestones</id>
|
|
||||||
<url>http://repo.springsource.org/libs-milestone</url>
|
|
||||||
<snapshots><enabled>true</enabled></snapshots>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<pluginRepositories>
|
<pluginRepositories>
|
||||||
<pluginRepository>
|
<pluginRepository>
|
||||||
<id>spring-snapshots</id>
|
<id>spring-snapshots</id>
|
||||||
@ -43,4 +39,5 @@
|
|||||||
<snapshots><enabled>true</enabled></snapshots>
|
<snapshots><enabled>true</enabled></snapshots>
|
||||||
</pluginRepository>
|
</pluginRepository>
|
||||||
</pluginRepositories>
|
</pluginRepositories>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user