Fix compatibility with Boot-1.4 and fresh POMs
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.integration.samples.storedprocedure.model;
|
||||
package org.springframework.integration.model;
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -22,8 +22,8 @@ import org.apache.log4j.Logger;
|
||||
|
||||
import org.springframework.context.support.AbstractApplicationContext;
|
||||
import org.springframework.context.support.ClassPathXmlApplicationContext;
|
||||
import org.springframework.integration.samples.storedprocedure.model.CoffeeBeverage;
|
||||
import org.springframework.integration.samples.storedprocedure.service.CoffeeService;
|
||||
import org.springframework.integration.model.CoffeeBeverage;
|
||||
import org.springframework.integration.service.CoffeeService;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -15,7 +15,7 @@ package org.springframework.integration.samples.storedprocedure.support;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
|
||||
import org.springframework.integration.samples.storedprocedure.model.CoffeeBeverage;
|
||||
import org.springframework.integration.model.CoffeeBeverage;
|
||||
import org.springframework.jdbc.core.RowMapper;
|
||||
|
||||
/**
|
||||
|
||||
@@ -14,11 +14,11 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.integration.samples.storedprocedure.service;
|
||||
package org.springframework.integration.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.springframework.integration.samples.storedprocedure.model.CoffeeBeverage;
|
||||
import org.springframework.integration.model.CoffeeBeverage;
|
||||
import org.springframework.messaging.handler.annotation.Payload;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
<int:gateway id="gateway" default-request-timeout="4000"
|
||||
default-reply-timeout="4000"
|
||||
service-interface="org.springframework.integration.samples.storedprocedure.service.CoffeeService">
|
||||
service-interface="org.springframework.integration.service.CoffeeService">
|
||||
<int:method name="findCoffeeBeverage" request-channel="findCoffeeProcedureRequestChannel" />
|
||||
<int:method name="findAllCoffeeBeverages" request-channel="findAllProcedureRequestChannel" />
|
||||
</int:gateway>
|
||||
|
||||
Reference in New Issue
Block a user