INTSAMPLE-33 Changes
This commit is contained in:
@@ -15,6 +15,10 @@
|
||||
*/
|
||||
package org.springframework.integration.samples.jdbc;
|
||||
|
||||
import java.util.EnumSet;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Represents the gender of the person
|
||||
* @author Amol Nayak
|
||||
@@ -23,6 +27,7 @@ package org.springframework.integration.samples.jdbc;
|
||||
public enum Gender {
|
||||
|
||||
MALE("M"),FEMALE("F");
|
||||
private static Map<String, Gender> map;
|
||||
|
||||
private String identifier;
|
||||
|
||||
@@ -33,4 +38,15 @@ public enum Gender {
|
||||
public String getIdentifier() {
|
||||
return identifier;
|
||||
}
|
||||
|
||||
public static Gender getGenderByIdentifier(String identifier) {
|
||||
return map.get(identifier);
|
||||
}
|
||||
|
||||
static {
|
||||
map = new HashMap<String, Gender>();
|
||||
for(Gender gender:EnumSet.allOf(Gender.class)) {
|
||||
map.put(gender.getIdentifier(), gender);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,11 +24,28 @@ import java.util.Date;
|
||||
*/
|
||||
public class Person {
|
||||
|
||||
private int personId;
|
||||
private String name;
|
||||
private Gender gender;
|
||||
private Date dateOfBirth;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Sets the person id
|
||||
* @return
|
||||
*/
|
||||
public int getPersonId() {
|
||||
return personId;
|
||||
}
|
||||
/**
|
||||
* Get the person Id
|
||||
* @param personId
|
||||
*/
|
||||
public void setPersonId(int personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the name of the person
|
||||
* @return
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<int:channel id="replyChannel"/>
|
||||
|
||||
<jdbc:embedded-database id="datasource" type="H2">
|
||||
<jdbc:script location="classpath:setup-tables.sql"/>
|
||||
<jdbc:script location="classpath:setup-tables.sql"/>
|
||||
</jdbc:embedded-database>
|
||||
|
||||
<!-- See also:
|
||||
@@ -34,5 +34,49 @@
|
||||
</int-jdbc:outbound-gateway>
|
||||
|
||||
<bean id="rowMapper" class="org.springframework.integration.samples.jdbc.UserMapper"/>
|
||||
|
||||
<!-- ====================Config for Person Service ========================= -->
|
||||
|
||||
<int:channel id="outboundJdbcRequestChannel"/>
|
||||
<int:channel id="outboundJdbcResponseChannel"/>
|
||||
|
||||
<int:gateway id="personService" service-interface="org.springframework.integration.samples.jdbc.service.PersonService">
|
||||
<int:method name="createPerson"
|
||||
request-channel="outboundJdbcRequestChannel"
|
||||
request-timeout="5000"
|
||||
reply-channel="outboundJdbcResponseChannel"
|
||||
reply-timeout="5000"/>
|
||||
</int:gateway>
|
||||
|
||||
<bean id="personResultMapper" class="org.springframework.integration.samples.jdbc.PersonMapper"/>
|
||||
<int-jdbc:outbound-gateway data-source="datasource"
|
||||
request-channel="outboundJdbcRequestChannel"
|
||||
reply-channel="outboundJdbcResponseChannel"
|
||||
update="insert into Person (name,gender,dateOfBirth)
|
||||
values
|
||||
(:name,:gender,:dateOfBirth)"
|
||||
query="select * from Person where id = :id"
|
||||
request-sql-parameter-source-factory="requestSource"
|
||||
reply-sql-parameter-source-factory="replySource"
|
||||
row-mapper="personResultMapper"
|
||||
keys-generated="true"/>
|
||||
|
||||
<bean id="replySource" class="org.springframework.integration.jdbc.ExpressionEvaluatingSqlParameterSourceFactory">
|
||||
<property name="parameterExpressions">
|
||||
<map>
|
||||
<entry key="id" value="#this['SCOPE_IDENTITY()']"/>
|
||||
</map>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="requestSource" class="org.springframework.integration.jdbc.ExpressionEvaluatingSqlParameterSourceFactory">
|
||||
<property name="parameterExpressions">
|
||||
<map>
|
||||
<entry key="name" value="payload.name.toUpperCase()"/>
|
||||
<entry key="gender" value="payload.gender.identifier"/>
|
||||
<entry key="dateOfBirth" value="payload.dateOfBirth"/>
|
||||
</map>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
</beans>
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
create table Person (
|
||||
id integer primary key not null generated always as identity (start with 1, increment by 1),
|
||||
name varchar(100) not null,
|
||||
gender varchar(1) not null,
|
||||
dateOfBirth date
|
||||
);
|
||||
@@ -1,5 +1,6 @@
|
||||
create table IF NOT EXISTS USERS(USERNAME varchar(100),PASSWORD varchar(100), EMAIL varchar(100));
|
||||
create table IF NOT EXISTS DUMMY(DUMMY_VALUE varchar(10));
|
||||
create table IF NOT EXISTS Person(id integer identity primary key , name varchar(100), gender varchar(1), dateOfBirth date);
|
||||
INSERT INTO USERS(USERNAME, PASSWORD, EMAIL) VALUES ('a', 'secret', 'spring-integration@awesome.com');
|
||||
INSERT INTO USERS(USERNAME, PASSWORD, EMAIL) VALUES ('b', 's3cr3t', 'spring@rocks.com');
|
||||
INSERT INTO USERS(USERNAME, PASSWORD, EMAIL) VALUES ('foo', 'bar', 'foo@bar.de');
|
||||
@@ -1,61 +0,0 @@
|
||||
/*
|
||||
* Copyright 2002-2011 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.integration.samples.jdbc;
|
||||
|
||||
import java.util.Calendar;
|
||||
|
||||
import org.apache.log4j.Logger;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.beans.factory.annotation.Qualifier;
|
||||
import org.springframework.integration.Message;
|
||||
import org.springframework.integration.MessageChannel;
|
||||
import org.springframework.integration.support.MessageBuilder;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
||||
|
||||
/**
|
||||
* The test class for jdbc outbound channel adapter
|
||||
* @author Amol Nayak
|
||||
*
|
||||
*/
|
||||
@ContextConfiguration("classpath:jdbcOutboundAdapterConfig.xml")
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
public class OutboundChannelAdapterTest {
|
||||
|
||||
private Logger logger = Logger.getLogger(OutboundChannelAdapterTest.class);
|
||||
@Autowired
|
||||
@Qualifier("outboundJdbcChannelOne")
|
||||
private MessageChannel channel;
|
||||
|
||||
@Test
|
||||
public void insertPersonRecord() {
|
||||
|
||||
logger.info("Creating person Instance");
|
||||
Person person = new Person();
|
||||
Calendar dateOfBirth = Calendar.getInstance();
|
||||
dateOfBirth.set(1980, 0, 1);
|
||||
person.setDateOfBirth(dateOfBirth.getTime());
|
||||
person.setName("Name Of The Person");
|
||||
person.setGender(Gender.MALE);
|
||||
Message<Person> message = MessageBuilder.withPayload(person).build();
|
||||
channel.send(message);
|
||||
logger.info("Sent person Instance");
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,38 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:integration="http://www.springframework.org/schema/integration"
|
||||
xmlns:jdbc="http://www.springframework.org/schema/integration/jdbc"
|
||||
xmlns:task="http://www.springframework.org/schema/task"
|
||||
xsi:schemaLocation=
|
||||
"http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
|
||||
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd
|
||||
http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration-2.0.xsd
|
||||
http://www.springframework.org/schema/integration/jdbc http://www.springframework.org/schema/integration/jdbc/spring-integration-jdbc-2.0.xsd">
|
||||
|
||||
|
||||
<integration:channel id="outboundJdbcChannelOne"/>
|
||||
|
||||
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
|
||||
<property name="driverClassName" value="org.apache.derby.client.ClientXAConnection"/>
|
||||
<property name="url" value="jdbc:derby://localhost:1527/TestDatabase"/>
|
||||
</bean>
|
||||
|
||||
<jdbc:outbound-channel-adapter data-source="dataSource"
|
||||
channel="outboundJdbcChannelOne"
|
||||
query="insert into Person (name,gender,dateOfBirth)
|
||||
values
|
||||
(:name,:gender,:dateOfBirth)"
|
||||
sql-parameter-source-factory="spelSource"/>
|
||||
|
||||
|
||||
<bean id="spelSource" class="org.springframework.integration.jdbc.ExpressionEvaluatingSqlParameterSourceFactory">
|
||||
<property name="parameterExpressions">
|
||||
<map>
|
||||
<entry key="name" value="payload.name.toUpperCase()"/>
|
||||
<entry key="gender" value="payload.gender.identifier"/>
|
||||
<entry key="dateOfBirth" value="payload.dateOfBirth"/>
|
||||
</map>
|
||||
</property>
|
||||
</bean>
|
||||
</beans>
|
||||
@@ -1,8 +0,0 @@
|
||||
log4j.rootCategory=DEBUG, stdout
|
||||
|
||||
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
||||
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
||||
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %t %c{2}:%L - %m%n
|
||||
|
||||
|
||||
log4j.category.org.springframework=DEBUG
|
||||
Reference in New Issue
Block a user