Mule自带例子之loanbroker-simple
1 配置效果图
2 配置文件
<?xml version="1.0" encoding="UTF-8"?> <mule xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" xmlns:http="http://www.mulesoft.org/schema/mule/http" version="CE-3.4.0"
xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
xmlns:spring="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd"> <!--
The main loanbroker flow that:
i) Receives a customer request
ii) Performs a lookup of the customer credit profile using a component binding
iii) Determines the bank that should be used to request quotes
iv) Sends the request to the selected banks and aggregates responses
v) Selects the lowest quote from the list of quotes
vi) Returns the response to the client
-->
<flow name="loadbroker-sync"> <http:inbound-endpoint exchange-pattern="request-response" address="http://0.0.0.0:11081" doc:name="HTTP"/> <http:body-to-parameter-map-transformer doc:name="Body to Parameter Map"/> <choice doc:name="Choice">
<when expression="!(payload['name'] == null || payload['ssn'] == null || payload['amount'] == null || payload['term']==null)">
<expression-component doc:name="create customer request">
<![CDATA[
import org.mule.example.loanbroker.message.CustomerQuoteRequest;
import org.mule.example.loanbroker.model.Customer; payload = new CustomerQuoteRequest(
new Customer(payload['name'], Integer.parseInt(payload['ssn'])),
Integer.parseInt(payload['amount']),
Integer.parseInt(payload['term'])
);
]]>
</expression-component> <enricher source="#[payload]" target="flowVars['creditProfile']" doc:name="Enricher with creditProfile">
<!--
功能: 根据CustomerQuoteRequest中的Customer,调用CreditAgencyService服务,取得该客户的信用信息CreditProfile
输入payload类型:CustomerQuoteRequest
返回消息负载类型:CreditProfile - 放入流变量creditProfile中
-->
<flow-ref name="lookupCustomerCreditProfile" doc:name="lookupCustomerCreditProfile"/>
</enricher> <enricher source="#[payload]" target="#[flowVars['bankURIs']]" doc:name="Enricher with banks">
<!--
功能:根据CustomerQuoteRequest中的loanAmount,
输入消息负载类型:CustomerQuoteRequest
返回消息负载类型:数组
-->
<flow-ref name="lookupBanks" doc:name="lookupBanks"/>
</enricher> <set-variable variableName="quotes" value="#[new java.util.LinkedList()]" doc:name="create empty quotes"/> <!-- 迭代bankURIs(ArrayList)数组 -->
<foreach collection="#[flowVars['bankURIs']]" doc:name="Foreach">
<logger message="bankURI: #[payload]" level="INFO" doc:name="Test"/>
<enricher target="#[quotes.add($)]" doc:name="Message Enricher">
<!--
输入消息负载类型是:http://localhost:10080/mule/TheBank1
返回类型是:LoanQuote - Bank #1, rate: 6.159007229611378
把当前返回的LoanQuote放到quotes列表中
-->
<flow-ref name="lookupLoanQuote" doc:name="lookupLoanQuote"/>
</enricher>
</foreach>
<!--
输入消息负载类型:CustomerQuoteRequest
返回消息负载类型:为利率最低的那个LoanQuote
-->
<flow-ref name="findLowestLoanQuote" doc:name="findLowestLoanQuote"/>
<object-to-string-transformer doc:name="Object to String"/>
</when>
<otherwise>
<expression-component doc:name="Expression"><![CDATA[payload = 'Error: incomplete request']]></expression-component>
</otherwise>
</choice>
<catch-exception-strategy doc:name="Catch Exception Strategy">
<set-payload value="Error processing loan request" doc:name="Set error message"/>
</catch-exception-strategy>
</flow> <sub-flow name="lookupCustomerCreditProfile">
<!-- lookupCustomerCreditProfile input: org.mule.example.loanbroker.message.CustomerQuoteRequest@16d9b56 -->
<logger message="lookupCustomerCreditProfile input: #[payload]" level="INFO" doc:name="input"/> <set-payload value="#[payload.customer]" doc:name="customer"/>
<processor-chain doc:name="Processor Chain">
<cxf:jaxws-client operation="getCreditProfile" serviceClass="org.mule.example.loanbroker.creditagency.CreditAgencyService" doc:name="CXF"/>
<http:outbound-endpoint exchange-pattern="request-response" host="localhost" port="18080" path="mule/TheCreditAgencyService" method="POST" doc:name="HTTP"/>
</processor-chain> <!-- lookupCustomerCreditProfile end payload type: creditScore: 300, creditHistory: 1 - CreditProfile -->
<logger message="lookupCustomerCreditProfile output: #[payload.getClass()] - #[payload]" level="INFO" doc:name="output"/>
</sub-flow> <!-- 取得Bank的URIs -->
<sub-flow name="lookupBanks">
<logger message="Banks to contact beginning: #[payload]" level="INFO" doc:name="banks"/>
<choice doc:name="Choice">
<when expression="payload.getLoanAmount() >= 20000">
<expression-component doc:name="Bank1, Bank2">
<![CDATA[payload = [
new java.net.URI('http://localhost:10080/mule/TheBank1'),
new java.net.URI('http://localhost:20080/mule/TheBank2')
]]]>
</expression-component>
</when>
<when expression="payload.getLoanAmount() >= 10000 && payload.getLoanAmount() <= 1999">
<expression-component doc:name="Bank3, Bank4">
<![CDATA[payload = [
new java.net.URI('http://localhost:30080/mule/TheBank3'),
new java.net.URI('http://localhost:40080/mule/TheBank4')
]]]>
</expression-component>
</when>
<otherwise>
<expression-component doc:name="Bank5">
<![CDATA[payload = [
new java.net.URI('http://localhost:50080/mule/TheBank5')
]]]>
</expression-component>
</otherwise>
</choice>
<!--
出去时payload的类型 一个数组(lookupBanks ouput: class java.util.ArrayList)
Banks to contact: [http://localhost:10080/mule/TheBank1, http://localhost:20080/mule/TheBank2]
-->
<logger message="lookupBanks ouput: #[payload.getClass()] - #[payload]" level="INFO" doc:name="output"/>
</sub-flow> <sub-flow name="lookupLoanQuote">
<!--
lookupLoanQuote input: class java.net.URI - http://localhost:10080/mule/TheBank1 输入的类型是一个java.net.URI
-->
<logger message="lookupLoanQuote input: #[payload.getClass()] - #[payload]" level="INFO" doc:name="input"/> <set-variable variableName="bankUri" value="#[payload]" doc:name="bankUri"/> <expression-component doc:name="create LoanBrokerLoanRequest">
<![CDATA[
import org.mule.example.loanbroker.message.LoanBrokerQuoteRequest; LoanBrokerQuoteRequest bqr = new LoanBrokerQuoteRequest();
bqr.setCreditProfile(flowVars['creditProfile']);
payload = (Object) bqr; //此次表明,payload就是一个Object类型的引用,所以进来是引用的是java.net.URI,出去时引用的是LoanBrokerQuoteRequest
]]>
</expression-component>
<processor-chain doc:name="Processor Chain">
<cxf:jaxws-client operation="getLoanQuote" serviceClass="org.mule.example.loanbroker.bank.BankService" doc:name="getLoanQuote"/>
<http:outbound-endpoint exchange-pattern="request-response"
address="http://#[flowVars['bankUri'].getHost()]:#[flowVars['bankUri'].getPort()]#[flowVars['bankUri'].getPath()]" doc:name="HTTP"/>
</processor-chain>
<logger message="LoanQuote from #[flowVars['bankUri']]: #[payload]" level="INFO" doc:name="quote"/>
<logger message="lookupLoanQuote output: #[payload.getClass()] - #[payload]" level="INFO" doc:name="output"/>
</sub-flow> <sub-flow name="findLowestLoanQuote">
<logger message="findLowestLoanQuote input: #[payload]" level="INFO" doc:name="input"/>
<expression-component doc:name="Expression">
<![CDATA[
import org.mule.example.loanbroker.model.LoanQuote; LoanQuote lowestQuote = null; for (Object current : (List) flowVars['quotes'])
{
LoanQuote loanQuote = (LoanQuote) current; if (lowestQuote == null)
lowestQuote = loanQuote;
else if (loanQuote.getInterestRate() < lowestQuote.getInterestRate())
lowestQuote = loanQuote;
} payload = lowestQuote;
]]>
</expression-component>
<logger message="findLowestLoanQuote output: #[payload.getClass()] - #[payload]" level="INFO" doc:name="output" />
</sub-flow> <!--
模拟的一些服务
-->
<flow name="TheCreditAgencyService">
<http:inbound-endpoint exchange-pattern="request-response" address="http://localhost:18080/mule/TheCreditAgencyService" doc:name="HTTP"/>
<cxf:jaxws-service serviceClass="org.mule.example.loanbroker.creditagency.CreditAgencyService" doc:name="SOAP"/>
<component doc:name="Java">
<singleton-object class="org.mule.example.loanbroker.creditagency.DefaultCreditAgency"/>
</component>
</flow> <flow name="Bank1Flow">
<http:inbound-endpoint exchange-pattern="request-response" address="http://localhost:10080/mule/TheBank1" doc:name="HTTP"/>
<cxf:jaxws-service serviceClass="org.mule.example.loanbroker.bank.BankService" doc:name="SOAP"/>
<component doc:name="Bank1">
<singleton-object class="org.mule.example.loanbroker.bank.Bank">
<property key="bankName" value="Bank #1" />
</singleton-object>
</component>
</flow> <flow name="Bank2Flow">
<http:inbound-endpoint exchange-pattern="request-response" address="http://localhost:20080/mule/TheBank2" doc:name="HTTP"/>
<cxf:jaxws-service serviceClass="org.mule.example.loanbroker.bank.BankService" doc:name="SOAP"/>
<component doc:name="Bank2">
<singleton-object class="org.mule.example.loanbroker.bank.Bank">
<property key="bankName" value="Bank #2" />
</singleton-object>
</component>
</flow> <flow name="Bank3Flow">
<http:inbound-endpoint exchange-pattern="request-response" address="http://localhost:30080/mule/TheBank3" doc:name="HTTP"/>
<cxf:jaxws-service serviceClass="org.mule.example.loanbroker.bank.BankService" doc:name="SOAP"/>
<component doc:name="Bank3">
<singleton-object class="org.mule.example.loanbroker.bank.Bank">
<property key="bankName" value="Bank #3" />
</singleton-object>
</component>
</flow> <flow name="Bank4Flow">
<http:inbound-endpoint exchange-pattern="request-response" address="http://localhost:40080/mule/TheBank4" doc:name="HTTP"/>
<cxf:jaxws-service serviceClass="org.mule.example.loanbroker.bank.BankService" doc:name="SOAP"/>
<component doc:name="Bank4">
<singleton-object class="org.mule.example.loanbroker.bank.Bank">
<property key="bankName" value="Bank #4" />
</singleton-object>
</component>
</flow> <flow name="Bank5Flow">
<http:inbound-endpoint exchange-pattern="request-response" address="http://localhost:50080/mule/TheBank5" doc:name="HTTP"/>
<cxf:jaxws-service serviceClass="org.mule.example.loanbroker.bank.BankService" doc:name="SOAP"/>
<component doc:name="Bank5">
<singleton-object class="org.mule.example.loanbroker.bank.Bank">
<property key="bankName" value="Bank #5" />
</singleton-object>
</component>
</flow>
</mule>
3 相关类文件
1)http://0.0.0.0:11081入站端点请求处理相关类 CustomerQuoteRequest和Customer
CustomerQuoteRequest类
package org.mule.example.loanbroker.message; import java.io.Serializable; import org.mule.example.loanbroker.model.Customer; public class CustomerQuoteRequest implements Serializable { /**
*
*/
private static final long serialVersionUID = 2449671876064808042L; private Customer customer;
private double loanAmount;
private int loanDuration; public CustomerQuoteRequest() {} public CustomerQuoteRequest(Customer customer, double loanAmount, int loanDuration) {
this.customer = customer;
this.loanAmount = loanAmount;
this.loanDuration = loanDuration;
} public Customer getCustomer() {
return customer;
} public void setCustomer(Customer customer) {
this.customer = customer;
} public double getLoanAmount() {
return loanAmount;
} public void setLoanAmount(double loanAmount) {
this.loanAmount = loanAmount;
} public int getLoanDuration() {
return loanDuration;
} public void setLoanDuration(int loanDuration) {
this.loanDuration = loanDuration;
}
}
Customer
package org.mule.example.loanbroker.model; import java.io.Serializable; public class Customer implements Serializable { /**
*
*/
private static final long serialVersionUID = 3102974874591789911L; private String name;
private int ssn; public Customer() {} public Customer(String name, int ssn) {
this.name = name;
this.ssn = ssn;
} public String getName() {
return name;
} public void setName(String name) {
this.name = name;
} public int getSsn() {
return ssn;
} public void setSsn(int ssn) {
this.ssn = ssn;
}
}
2)http://localhost:18080/mule/TheCreditAgencyService 端点的 信用代理服务相关类 CreditAgencyService, DefaultCreditAgency 和 CreditProfile
CreditAgencyService
package org.mule.example.loanbroker.creditagency; import javax.jws.WebService; import org.mule.example.loanbroker.model.CreditProfile;
import org.mule.example.loanbroker.model.Customer; /**
* 该服务为客户提供信用查询
*
*/
@WebService
public interface CreditAgencyService { CreditProfile getCreditProfile(Customer customer);
}
DefaultCreditAgency
package org.mule.example.loanbroker.creditagency; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.mule.example.loanbroker.model.CreditProfile;
import org.mule.example.loanbroker.model.Customer; public class DefaultCreditAgency implements CreditAgencyService { private static final Log logger = LogFactory.getLog(DefaultCreditAgency.class); @Override
public CreditProfile getCreditProfile(Customer customer) { CreditProfile cp = new CreditProfile();
cp.setCreditHistory(getCreditHistoryLength(customer.getSsn()));
cp.setCreditScore(getCreditScore(customer.getSsn()));
return cp;
} /**
* 随机生成一个信用历史时间
* @param ssn
* @return
*/
protected int getCreditHistoryLength(int ssn) { int credit_history_length;
credit_history_length = (int) Math.random() * 19 + 1;
return credit_history_length;
} /**
* 随机生成一个信用评分
* @param ssn
* @return
*/
protected int getCreditScore(int ssn) {
int credit_score;
double rand = Math.random();
credit_score = (int) (rand * 600 + 300);
logger.info("----------------- " + "ssn[" + ssn + "]" + " 信用计算---------------------");
logger.info(String.format("%.2f", rand) + " * 600 + 300 = " + credit_score); return credit_score;
}
}
CreditProfile
package org.mule.example.loanbroker.model; import java.io.Serializable; public class CreditProfile implements Serializable { /**
*
*/
private static final long serialVersionUID = -875718927687611982L; private int creditScore;
private int creditHistory; public CreditProfile() {} public CreditProfile(int creditScore, int creditHistory) {
this.creditScore = creditScore;
this.creditHistory = creditHistory;
} public int getCreditScore() {
return creditScore;
} public void setCreditScore(int creditScore) {
this.creditScore = creditScore;
} public int getCreditHistory() {
return creditHistory;
} public void setCreditHistory(int creditHistory) {
this.creditHistory = creditHistory;
} public String toString() {
return "creditScore: " + creditScore + ", creditHistory: " + creditHistory;
} }
5)在http://localhost:10080/mule/TheBank1, http://localhost:20080/mule/TheBank2, ...., http://localhost:50080/mule/TheBank5端点 提供 银行贷款服务的相关类
BankService
package org.mule.example.loanbroker.bank; import javax.jws.WebService; import org.mule.example.loanbroker.message.LoanBrokerQuoteRequest;
import org.mule.example.loanbroker.model.LoanQuote; @WebService
public interface BankService { LoanQuote getLoanQuote(LoanBrokerQuoteRequest request); }
Bank
package org.mule.example.loanbroker.bank; import java.io.Serializable;
import java.util.Arrays; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.mule.example.loanbroker.message.LoanBrokerQuoteRequest;
import org.mule.example.loanbroker.model.LoanQuote; /**
* 功能描述:
* 每个银行对客户分3级:
* 铂金用户(信用评分:700 ~ xxx) -- 利率最低
* 黄金用户(信用评分:500 ~ 700)--
* 基本用户(信用评分: 0 ~ 500) -- 利率最高
*/
public class Bank implements Serializable, BankService { private static final long serialVersionUID = 3581465484941524150L; private static final int PLATINUM_PROFILE_INDEX = 0;
private static final int GOLD_PROFILE_INDEX = 1;
private static final int BASIC_PROFILE_INDEX = 2; protected static final Log logger = LogFactory.getLog(Bank.class); private String bankName;
private final double[] rates; public Bank() {
rates = new double[] {
Math.random() * 10,
Math.random() * 10,
Math.random() * 10 };
Arrays.sort(rates);
} @Override
public LoanQuote getLoanQuote(LoanBrokerQuoteRequest request) { logger.info("-------------------- 调用 BankService(" + bankName + ")服务 ---------------"); logger.info("该行提供的利率为: " + rates[0] + ", " + rates[1] + ", " + rates[2]); LoanQuote quote = new LoanQuote();
quote.setBankName(bankName);
//获得信用评分
int creditScore = request.getCreditProfile().getCreditScore();
logger.info("此次请求的信用评分creditScore:" + creditScore); quote.setInterestRate(getCreditScoreRate(creditScore));
logger.info("Returning Rate is: " + quote);
logger.info("-------------------------------------------------------------"); return quote;
} /**
* 依据信用评分判断出贷款利率
* @param creditScore
* @return
*/
private double getCreditScoreRate(int creditScore) {
int index;
if (creditScore < 500) {
index = BASIC_PROFILE_INDEX;
logger.info("为基本客户");
}
else if (creditScore < 700) {
index = GOLD_PROFILE_INDEX;
logger.info("为黄金客户");
} else {
index = PLATINUM_PROFILE_INDEX;
logger.info("为铂金客户");
} return rates[index];
} public String getBankName() {
return bankName;
} public void setBankName(String bankName) {
this.bankName = bankName;
}
}
LoanQuote
package org.mule.example.loanbroker.model; import java.io.Serializable; public class LoanQuote implements Serializable { /**
*
*/
private static final long serialVersionUID = -6113408134263802670L; private String bankName;
private double interestRate = 0; public LoanQuote() {} public String getBankName() {
return bankName;
} public void setBankName(String bankName) {
this.bankName = bankName;
} public double getInterestRate() {
return interestRate;
} public void setInterestRate(double interestRate) {
this.interestRate = interestRate;
} public String toString() {
return bankName + ", rate: " + interestRate;
}
}
4 测试
5 输出日志分析
[06-23 12:05:43] INFO DefaultMuleApplication [main]:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ Initializing app 'loanbroker-simple' +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
[06-23 12:05:43] INFO AbstractLifecycleManager [main]: Initialising RegistryBroker 初始化注册代理
[06-23 12:05:44] INFO MuleApplicationContext [main]: Refreshing org.mule.config.spring.MuleApplicationContext@e28886: startup date [Tue Jun 23 12:05:44 CST 2015]; root of context hierarchy 刷新mule应用上下文
[06-23 12:05:45] INFO AbstractLifecycleManager [main]: Initialising model: _muleSystemModel 初始化mule系统模型
[06-23 12:05:45] INFO AbstractLifecycleManager [main]: Initialising connector: connector.http.mule.default 初始化http连接器
[06-23 12:05:46] WARN GenericTypeAwarePropertyDescriptor [main]: Invalid JavaBean property 'port' being accessed! Ambiguous write methods found next to actually used [public void org.mule.endpoint.URIBuilder.setPort(java.lang.String)]: [public void org.mule.endpoint.URIBuilder.setPort(int)]
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Initialising flow: loadbroker-sync 初始化流
[06-23 12:05:46] INFO CatchMessagingExceptionStrategy [main]: Initialising exception listener: org.mule.exception.CatchMessagingExceptionStrategy@19587e5
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Initialising service: loadbroker-sync.stage1
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Initialising flow: TheCreditAgencyService
[06-23 12:05:46] INFO DefaultMessagingExceptionStrategy [main]: Initialising exception listener: org.mule.exception.DefaultMessagingExceptionStrategy@4fb8ac
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Initialising service: TheCreditAgencyService.stage1
[06-23 12:05:46] INFO WebServiceFactoryBean [main]: Built CXF Inbound MessageProcessor for service class org.mule.example.loanbroker.creditagency.CreditAgencyService
[06-23 12:05:46] INFO ComponentLifecycleManager [main]: Initialising component: component.8626349
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Initialising flow: Bank1Flow
[06-23 12:05:46] INFO DefaultMessagingExceptionStrategy [main]: Initialising exception listener: org.mule.exception.DefaultMessagingExceptionStrategy@179ff98
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Initialising service: Bank1Flow.stage1
[06-23 12:05:46] INFO WebServiceFactoryBean [main]: Built CXF Inbound MessageProcessor for service class org.mule.example.loanbroker.bank.BankService
[06-23 12:05:46] INFO ComponentLifecycleManager [main]: Initialising component: component.2709710
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Initialising flow: Bank2Flow
[06-23 12:05:46] INFO DefaultMessagingExceptionStrategy [main]: Initialising exception listener: org.mule.exception.DefaultMessagingExceptionStrategy@10aaafc
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Initialising service: Bank2Flow.stage1
[06-23 12:05:46] INFO WebServiceFactoryBean [main]: Built CXF Inbound MessageProcessor for service class org.mule.example.loanbroker.bank.BankService
[06-23 12:05:46] INFO ComponentLifecycleManager [main]: Initialising component: component.18460269
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Initialising flow: Bank3Flow
[06-23 12:05:46] INFO DefaultMessagingExceptionStrategy [main]: Initialising exception listener: org.mule.exception.DefaultMessagingExceptionStrategy@1f0b28
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Initialising service: Bank3Flow.stage1
[06-23 12:05:46] INFO WebServiceFactoryBean [main]: Built CXF Inbound MessageProcessor for service class org.mule.example.loanbroker.bank.BankService
[06-23 12:05:46] INFO ComponentLifecycleManager [main]: Initialising component: component.25069616
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Initialising flow: Bank4Flow
[06-23 12:05:46] INFO DefaultMessagingExceptionStrategy [main]: Initialising exception listener: org.mule.exception.DefaultMessagingExceptionStrategy@1c2547b
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Initialising service: Bank4Flow.stage1
[06-23 12:05:46] INFO WebServiceFactoryBean [main]: Built CXF Inbound MessageProcessor for service class org.mule.example.loanbroker.bank.BankService
[06-23 12:05:46] INFO ComponentLifecycleManager [main]: Initialising component: component.16222959
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Initialising flow: Bank5Flow
[06-23 12:05:46] INFO DefaultMessagingExceptionStrategy [main]: Initialising exception listener: org.mule.exception.DefaultMessagingExceptionStrategy@13c6aff
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Initialising service: Bank5Flow.stage1
[06-23 12:05:46] INFO WebServiceFactoryBean [main]: Built CXF Inbound MessageProcessor for service class org.mule.example.loanbroker.bank.BankService
[06-23 12:05:46] INFO ComponentLifecycleManager [main]: Initialising component: component.24429866 [06-23 12:05:46] INFO AutoConfigurationBuilder [main]: Configured Mule using "org.mule.config.spring.SpringXmlConfigurationBuilder" with configuration resource(s): "[ConfigResource{resourceName='D:\AnypointStudio\workspace\.mule\apps\loanbroker-simple\loanbroker-simple.xml'}]"
[06-23 12:05:46] INFO AutoConfigurationBuilder [main]: Configured Mule using "org.mule.config.builders.AutoConfigurationBuilder" with configuration resource(s): "[ConfigResource{resourceName='D:\AnypointStudio\workspace\.mule\apps\loanbroker-simple\loanbroker-simple.xml'}]"
[06-23 12:05:46] INFO DefaultMuleApplication [main]: Monitoring for hot-deployment: D:\AnypointStudio\workspace\.mule\apps\loanbroker-simple\loanbroker-simple.xml
[06-23 12:05:46] INFO DefaultMuleApplication [main]:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ Starting app 'loanbroker-simple' +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
[06-23 12:05:46] INFO TransactionalQueueManager [main]: Starting ResourceManager
[06-23 12:05:46] INFO TransactionalQueueManager [main]: Started ResourceManager
[06-23 12:05:46] INFO HttpConnector [main]: Connected: HttpConnector
{
name=connector.http.mule.default
lifecycle=initialise
this=4bd2df
numberOfConcurrentTransactedReceivers=4
createMultipleTransactedReceivers=true
connected=true
supportedProtocols=[http]
serviceOverrides=<none>
} [06-23 12:05:46] INFO HttpConnector [main]: Starting: HttpConnector
{
name=connector.http.mule.default
lifecycle=initialise
this=4bd2df
numberOfConcurrentTransactedReceivers=4
createMultipleTransactedReceivers=true
connected=true
supportedProtocols=[http]
serviceOverrides=<none>
} [06-23 12:05:46] INFO AbstractLifecycleManager [main]: Starting connector: connector.http.mule.default 启动http连接器
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Starting model: _muleSystemModel 启动mule系统模型 启动流服务loadbroker-sync
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Starting flow: loadbroker-sync
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Starting service: loadbroker-sync.stage1
[06-23 12:05:46] INFO HttpConnector [main]: Registering listener: loadbroker-sync on endpointUri: http://0.0.0.0:11081
[06-23 12:05:46] INFO DefaultTransportServiceDescriptor [main]: Loading default response transformer: org.mule.transport.http.transformers.MuleMessageToHttpResponse
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Initialising: 'null'. Object is: HttpMessageReceiver HTTP消息接收者没有名字,初始化名字为'null'的HTTP消息接受者
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Connecting clusterizable message receiver
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Starting: 'null'. Object is: HttpMessageReceiver 启动名字为'null'的HTTP消息接收者
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Starting clusterizable message receiver 启动流服务TheCreditAgencyService
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Starting flow: TheCreditAgencyService
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Starting service: TheCreditAgencyService.stage1
[06-23 12:05:46] INFO ComponentLifecycleManager [main]: Starting component: component.8626349
[06-23 12:05:46] INFO HttpConnector [main]: Registering listener: TheCreditAgencyService on endpointUri: http://localhost:18080/mule/TheCreditAgencyService
[06-23 12:05:46] INFO DefaultTransportServiceDescriptor [main]: Loading default response transformer: org.mule.transport.http.transformers.MuleMessageToHttpResponse
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Initialising: 'null'. Object is: HttpMessageReceiver
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Connecting clusterizable message receiver
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Starting: 'null'. Object is: HttpMessageReceiver
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Starting clusterizable message receiver 启动流服务Bank1Flow
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Starting flow: Bank1Flow
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Starting service: Bank1Flow.stage1
[06-23 12:05:46] INFO ComponentLifecycleManager [main]: Starting component: component.2709710
[06-23 12:05:46] INFO HttpConnector [main]: Registering listener: Bank1Flow on endpointUri: http://localhost:10080/mule/TheBank1
[06-23 12:05:46] INFO DefaultTransportServiceDescriptor [main]: Loading default response transformer: org.mule.transport.http.transformers.MuleMessageToHttpResponse
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Initialising: 'null'. Object is: HttpMessageReceiver
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Connecting clusterizable message receiver
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Starting: 'null'. Object is: HttpMessageReceiver
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Starting clusterizable message receiver [06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Starting flow: Bank2Flow
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Starting service: Bank2Flow.stage1
[06-23 12:05:46] INFO ComponentLifecycleManager [main]: Starting component: component.18460269
[06-23 12:05:46] INFO HttpConnector [main]: Registering listener: Bank2Flow on endpointUri: http://localhost:20080/mule/TheBank2
[06-23 12:05:46] INFO DefaultTransportServiceDescriptor [main]: Loading default response transformer: org.mule.transport.http.transformers.MuleMessageToHttpResponse
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Initialising: 'null'. Object is: HttpMessageReceiver
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Connecting clusterizable message receiver
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Starting: 'null'. Object is: HttpMessageReceiver
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Starting clusterizable message receiver
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Starting flow: Bank3Flow
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Starting service: Bank3Flow.stage1
[06-23 12:05:46] INFO ComponentLifecycleManager [main]: Starting component: component.25069616
[06-23 12:05:46] INFO HttpConnector [main]: Registering listener: Bank3Flow on endpointUri: http://localhost:30080/mule/TheBank3
[06-23 12:05:46] INFO DefaultTransportServiceDescriptor [main]: Loading default response transformer: org.mule.transport.http.transformers.MuleMessageToHttpResponse
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Initialising: 'null'. Object is: HttpMessageReceiver
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Connecting clusterizable message receiver
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Starting: 'null'. Object is: HttpMessageReceiver
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Starting clusterizable message receiver
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Starting flow: Bank4Flow
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Starting service: Bank4Flow.stage1
[06-23 12:05:46] INFO ComponentLifecycleManager [main]: Starting component: component.16222959
[06-23 12:05:46] INFO HttpConnector [main]: Registering listener: Bank4Flow on endpointUri: http://localhost:40080/mule/TheBank4
[06-23 12:05:46] INFO DefaultTransportServiceDescriptor [main]: Loading default response transformer: org.mule.transport.http.transformers.MuleMessageToHttpResponse
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Initialising: 'null'. Object is: HttpMessageReceiver
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Connecting clusterizable message receiver
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Starting: 'null'. Object is: HttpMessageReceiver
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Starting clusterizable message receiver
[06-23 12:05:46] INFO FlowConstructLifecycleManager [main]: Starting flow: Bank5Flow
[06-23 12:05:46] INFO SedaStageLifecycleManager [main]: Starting service: Bank5Flow.stage1
[06-23 12:05:46] INFO ComponentLifecycleManager [main]: Starting component: component.24429866
[06-23 12:05:46] INFO HttpConnector [main]: Registering listener: Bank5Flow on endpointUri: http://localhost:50080/mule/TheBank5
[06-23 12:05:46] INFO DefaultTransportServiceDescriptor [main]: Loading default response transformer: org.mule.transport.http.transformers.MuleMessageToHttpResponse
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Initialising: 'null'. Object is: HttpMessageReceiver
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Connecting clusterizable message receiver
[06-23 12:05:46] INFO AbstractLifecycleManager [main]: Starting: 'null'. Object is: HttpMessageReceiver
[06-23 12:05:46] INFO HttpMessageReceiver [main]: Starting clusterizable message receiver [06-23 12:05:46] INFO DefaultMuleApplication [main]: Reload interval: 3000
[06-23 12:05:46] INFO WrapperManagerAgent [main]: This JVM hasn't been launched by the wrapper, the agent will not run.
[06-23 12:05:46] INFO JmxAgent [main]: Attempting to register service with name: 注册流服务TheCreditAgencyService
Mule.loanbroker-simple:type=Endpoint,service="TheCreditAgencyService",connector=connector.http.mule.default,name="endpoint.http.localhost.18080.mule.TheCreditAgencyService"
[06-23 12:05:46] INFO JmxAgent [main]: Registered Endpoint Service with name:
Mule.loanbroker-simple:type=Endpoint,service="TheCreditAgencyService",connector=connector.http.mule.default,name="endpoint.http.localhost.18080.mule.TheCreditAgencyService"
[06-23 12:05:46] INFO JmxAgent [main]: Attempting to register service with name:
Mule.loanbroker-simple:type=Endpoint,service="Bank3Flow",connector=connector.http.mule.default,name="endpoint.http.localhost.30080.mule.TheBank3"
[06-23 12:05:46] INFO JmxAgent [main]: Registered Endpoint Service with name:
Mule.loanbroker-simple:type=Endpoint,service="Bank3Flow",connector=connector.http.mule.default,name="endpoint.http.localhost.30080.mule.TheBank3"
[06-23 12:05:46] INFO JmxAgent [main]: Attempting to register service with name: Mule.loanbroker-simple:type=Endpoint,service="Bank4Flow",connector=connector.http.mule.default,name="endpoint.http.localhost.40080.mule.TheBank4"
[06-23 12:05:46] INFO JmxAgent [main]: Registered Endpoint Service with name: Mule.loanbroker-simple:type=Endpoint,service="Bank4Flow",connector=connector.http.mule.default,name="endpoint.http.localhost.40080.mule.TheBank4"
[06-23 12:05:46] INFO JmxAgent [main]: Attempting to register service with name: Mule.loanbroker-simple:type=Endpoint,service="Bank5Flow",connector=connector.http.mule.default,name="endpoint.http.localhost.50080.mule.TheBank5"
[06-23 12:05:46] INFO JmxAgent [main]: Registered Endpoint Service with name: Mule.loanbroker-simple:type=Endpoint,service="Bank5Flow",connector=connector.http.mule.default,name="endpoint.http.localhost.50080.mule.TheBank5"
[06-23 12:05:46] INFO JmxAgent [main]: Attempting to register service with name: Mule.loanbroker-simple:type=Endpoint,service="Bank1Flow",connector=connector.http.mule.default,name="endpoint.http.localhost.10080.mule.TheBank1"
[06-23 12:05:46] INFO JmxAgent [main]: Registered Endpoint Service with name: Mule.loanbroker-simple:type=Endpoint,service="Bank1Flow",connector=connector.http.mule.default,name="endpoint.http.localhost.10080.mule.TheBank1"
[06-23 12:05:46] INFO JmxAgent [main]: Attempting to register service with name: Mule.loanbroker-simple:type=Endpoint,service="Bank2Flow",connector=connector.http.mule.default,name="endpoint.http.localhost.20080.mule.TheBank2"
[06-23 12:05:46] INFO JmxAgent [main]: Registered Endpoint Service with name: Mule.loanbroker-simple:type=Endpoint,service="Bank2Flow",connector=connector.http.mule.default,name="endpoint.http.localhost.20080.mule.TheBank2"
[06-23 12:05:46] INFO JmxAgent [main]: Attempting to register service with name: 注册流服务loadbroker-sync
Mule.loanbroker-simple:type=Endpoint,service="loadbroker-sync",connector=connector.http.mule.default,name="endpoint.http.0.0.0.0.11081"
[06-23 12:05:46] INFO JmxAgent [main]: Registered Endpoint Service with name:
Mule.loanbroker-simple:type=Endpoint,service="loadbroker-sync",connector=connector.http.mule.default,name="endpoint.http.0.0.0.0.11081"
[06-23 12:05:46] INFO JmxAgent [main]: Registered Connector Service with name: 注册连接器服务connector.http.mule.default.1
Mule.loanbroker-simple:type=Connector,name="connector.http.mule.default.1" [06-23 12:05:46] INFO DefaultMuleContext [main]:
**********************************************************************
* Application: loanbroker-simple *
* OS encoding: GBK, Mule encoding: UTF-8 *
* *
* Agents Running: *
* JMX Agent *
**********************************************************************
[06-23 12:05:46] INFO MuleDeploymentService [main]:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ Started app 'loanbroker-simple' +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
[06-23 12:05:46] INFO StartupSummaryDeploymentListener [main]: **********************************************************************
* - - + APPLICATION + - - * - - + STATUS + - - *
**********************************************************************
* loanbroker-simple * DEPLOYED *
********************************************************************** [06-23 12:05:46] INFO MuleDeploymentService [main]:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ Mule is up and kicking (every 5000ms) +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
[06-23 12:05:49] INFO DefaultTransportServiceDescriptor [[loanbroker-simple].connector.http.mule.default.receiver.08]: Loading default outbound transformer: org.mule.transport.http.transformers.ObjectToHttpClientMethodRequest
[06-23 12:05:49] INFO DefaultTransportServiceDescriptor [[loanbroker-simple].connector.http.mule.default.receiver.08]: Loading default response transformer: org.mule.transport.http.transformers.MuleMessageToHttpResponse
[06-23 12:05:49] INFO DefaultTransportServiceDescriptor [[loanbroker-simple].connector.http.mule.default.receiver.08]: Loading default outbound transformer: org.mule.transport.http.transformers.ObjectToHttpClientMethodRequest
[06-23 12:05:49] INFO AbstractLifecycleManager [[loanbroker-simple].connector.http.mule.default.receiver.08]: Initialising: 'connector.http.mule.default.dispatcher.4887456'. Object is: HttpClientMessageDispatcher
[06-23 12:05:49] INFO AbstractLifecycleManager [[loanbroker-simple].connector.http.mule.default.receiver.08]: Starting: 'connector.http.mule.default.dispatcher.4887456'. Object is: HttpClientMessageDispatcher 调用子流lookupCustomerCreditProfile的日志输出
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: lookupCustomerCreditProfile input: org.mule.example.loanbroker.message.CustomerQuoteRequest@e9c2fd
[06-23 12:05:49] INFO DefaultCreditAgency [[loanbroker-simple].connector.http.mule.default.receiver.09]: ----------------- ssn[1234] 信用计算---------------------
[06-23 12:05:49] INFO DefaultCreditAgency [[loanbroker-simple].connector.http.mule.default.receiver.09]: 0.51 * 600 + 300 = 607
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: lookupCustomerCreditProfile output: class org.mule.example.loanbroker.model.CreditProfile - creditScore: 607, creditHistory: 1 调用子流lookupBanks的日志输出
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: Banks to contact beginning: org.mule.example.loanbroker.message.CustomerQuoteRequest@e9c2fd
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: lookupBanks ouput: class java.util.ArrayList - [http://localhost:10080/mule/TheBank1, http://localhost:20080/mule/TheBank2] 当前迭代的bankURL
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: bankURI: http://localhost:10080/mule/TheBank1
以当前迭代bankURL为输入消息负载,调用子流lookupLoanQuote
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: lookupLoanQuote input: class java.net.URI - http://localhost:10080/mule/TheBank1
[06-23 12:05:49] INFO DefaultTransportServiceDescriptor [[loanbroker-simple].connector.http.mule.default.receiver.08]: Loading default outbound transformer: org.mule.transport.http.transformers.ObjectToHttpClientMethodRequest
[06-23 12:05:49] INFO DefaultTransportServiceDescriptor [[loanbroker-simple].connector.http.mule.default.receiver.08]: Loading default response transformer: org.mule.transport.http.transformers.MuleMessageToHttpResponse
[06-23 12:05:49] INFO DefaultTransportServiceDescriptor [[loanbroker-simple].connector.http.mule.default.receiver.08]: Loading default outbound transformer: org.mule.transport.http.transformers.ObjectToHttpClientMethodRequest
[06-23 12:05:49] INFO AbstractLifecycleManager [[loanbroker-simple].connector.http.mule.default.receiver.08]: Initialising: 'connector.http.mule.default.dispatcher.24609463'. Object is: HttpClientMessageDispatcher
[06-23 12:05:49] INFO AbstractLifecycleManager [[loanbroker-simple].connector.http.mule.default.receiver.08]: Starting: 'connector.http.mule.default.dispatcher.24609463'. Object is: HttpClientMessageDispatcher
[06-23 12:05:49] INFO Bank [[loanbroker-simple].connector.http.mule.default.receiver.09]: -------------------- 调用 BankService(Bank #1)服务 ---------------
[06-23 12:05:49] INFO Bank [[loanbroker-simple].connector.http.mule.default.receiver.09]: 该行提供的利率为: 1.3555978615889497, 3.120721438085554, 3.6467680827751336
[06-23 12:05:49] INFO Bank [[loanbroker-simple].connector.http.mule.default.receiver.09]: 此次请求的信用评分creditScore:607
[06-23 12:05:49] INFO Bank [[loanbroker-simple].connector.http.mule.default.receiver.09]: 为黄金客户
[06-23 12:05:49] INFO Bank [[loanbroker-simple].connector.http.mule.default.receiver.09]: Returning Rate is: Bank #1, rate: 3.120721438085554
[06-23 12:05:49] INFO Bank [[loanbroker-simple].connector.http.mule.default.receiver.09]: -------------------------------------------------------------
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: LoanQuote from http://localhost:10080/mule/TheBank1: Bank #1, rate: 3.120721438085554
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: lookupLoanQuote output: class org.mule.example.loanbroker.model.LoanQuote - Bank #1, rate: 3.120721438085554 当前迭代的bankURL
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: bankURI: http://localhost:20080/mule/TheBank2
以当前迭代bankURL为输入消息负载,调用子流lookupLoanQuote
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: lookupLoanQuote input: class java.net.URI - http://localhost:20080/mule/TheBank2
[06-23 12:05:49] INFO DefaultTransportServiceDescriptor [[loanbroker-simple].connector.http.mule.default.receiver.08]: Loading default outbound transformer: org.mule.transport.http.transformers.ObjectToHttpClientMethodRequest
[06-23 12:05:49] INFO DefaultTransportServiceDescriptor [[loanbroker-simple].connector.http.mule.default.receiver.08]: Loading default response transformer: org.mule.transport.http.transformers.MuleMessageToHttpResponse
[06-23 12:05:49] INFO DefaultTransportServiceDescriptor [[loanbroker-simple].connector.http.mule.default.receiver.08]: Loading default outbound transformer: org.mule.transport.http.transformers.ObjectToHttpClientMethodRequest
[06-23 12:05:49] INFO AbstractLifecycleManager [[loanbroker-simple].connector.http.mule.default.receiver.08]: Initialising: 'connector.http.mule.default.dispatcher.13026502'. Object is: HttpClientMessageDispatcher
[06-23 12:05:49] INFO AbstractLifecycleManager [[loanbroker-simple].connector.http.mule.default.receiver.08]: Starting: 'connector.http.mule.default.dispatcher.13026502'. Object is: HttpClientMessageDispatcher
[06-23 12:05:49] INFO Bank [[loanbroker-simple].connector.http.mule.default.receiver.09]: -------------------- 调用 BankService(Bank #2)服务 ---------------
[06-23 12:05:49] INFO Bank [[loanbroker-simple].connector.http.mule.default.receiver.09]: 该行提供的利率为: 4.414272738125696, 8.167077378604374, 8.318685247739264
[06-23 12:05:49] INFO Bank [[loanbroker-simple].connector.http.mule.default.receiver.09]: 此次请求的信用评分creditScore:607
[06-23 12:05:49] INFO Bank [[loanbroker-simple].connector.http.mule.default.receiver.09]: 为黄金客户
[06-23 12:05:49] INFO Bank [[loanbroker-simple].connector.http.mule.default.receiver.09]: Returning Rate is: Bank #2, rate: 8.167077378604374
[06-23 12:05:49] INFO Bank [[loanbroker-simple].connector.http.mule.default.receiver.09]: -------------------------------------------------------------
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: LoanQuote from http://localhost:20080/mule/TheBank2: Bank #2, rate: 8.167077378604374
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: lookupLoanQuote output: class org.mule.example.loanbroker.model.LoanQuote - Bank #2, rate: 8.167077378604374 调用子流findLowestLoanQuote选择利率最低的LoanQuote贷款方案
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: findLowestLoanQuote input: org.mule.example.loanbroker.message.CustomerQuoteRequest@e9c2fd
[06-23 12:05:49] INFO LoggerMessageProcessor [[loanbroker-simple].connector.http.mule.default.receiver.08]: findLowestLoanQuote output: class org.mule.example.loanbroker.model.LoanQuote - Bank #1, rate: 3.120721438085554
Mule自带例子之loanbroker-simple的更多相关文章
- Mule自带例子之stockquote
1 配置效果图 2 配置文件 <?xml version="1.0" encoding="UTF-8"?> <mule version=&qu ...
- Mule自带例子之flight-reservation
1 配置效果图 2 应用的配置文件 <?xml version="1.0" encoding="UTF-8"?> <mule xmlns:sc ...
- Mule ESB 自带例子hello初体验
1 配置的流的效果图 2 应用配置文件hello.xml内容 <?xml version="1.0" encoding="UTF-8"?> < ...
- OPENCV SVM介绍和自带例子
依据机器学习算法如何学习数据可分为3类:有监督学习:从有标签的数据学习,得到模型参数,对测试数据正确分类:无监督学习:没有标签,计算机自己寻找输入数据可能的模型:强化学习(reinforcement ...
- 可视化工具solo show-----Prefuse自带例子GraphView讲解
2014.10.15日以来的一个月,挤破了头.跑断了腿.伤透了心.吃够了全国最大餐饮连锁店——沙县小吃.其中酸甜苦辣,绝不是三言两语能够说得清道的明的.校招的兄弟姐妹们,你们懂得…… 体会最深的一句话 ...
- MYSQL的锁介绍,以及死锁发生情况-带例子
mysql锁能在并发情况下的mysql进行更好的优化 MySQL有三种锁的级别:页级.表级.行级,这3种锁的特性可大致归纳如下: 表级锁:开销小,加锁快:不会出现死锁:锁定粒度大,发生锁冲突的概率最高 ...
- hadoop自带例子wordcount的具体运行步骤
1.在hadoop所在目录“usr/local”下创建一个文件夹input root@ubuntu:/usr/local# mkdir input 2.在文件夹input中创建两个文本文件file1. ...
- asp.net web api 2.2 基础框架(带例子)
链接:https://github.com/solenovex/asp.net-web-api-2.2-starter-template 简介 这个是我自己编写的asp.net web api 2.2 ...
- Python中threading的join和setDaemon的区别[带例子]
python的进程和线程经常用到,之前一直不明白threading的join和setDaemon的区别和用法,今天特地研究了一下.multiprocessing中也有这两个方法,同样适用,这里以thr ...
随机推荐
- arcgis点密度专题
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> ...
- 【JZOJ3299】【SDOI2013】保护出题人 三分+凸壳
题面 出题人铭铭认为给SDOI2012 出题太可怕了,因为总要被骂,于是他又给SDOI2013 出题了. 参加SDOI2012 的小朋友们释放出大量的僵尸,企图攻击铭铭的家.而你作为SDOI2013 ...
- node.js(二)各种模块
我们知道Node.js适合于IO密集型应用,不适合于CPU密集型应用. JS和Node.js区别: JS运行于客户端浏览器中,存在兼容性问题:数据类型:值类型+引用类型(ES+D ...
- iOS:你App的设置做对了吗?
http://www.cocoachina.com/ios/20151217/14707.html iOS 8及以上版本最不为人知的一个特点是与应用设置的深层链接,用户可以根据APP的需要授权启用位置 ...
- 跟我一起认识axure(三)
交互设置,添加链接 点击预览
- Hdu 2522 hash
题目链接 题意:输入整数n (1<= abs(n) <= 10^5) , 输出 1/n. 这题不是自己做出来的...看了网上的思路.这种题目都能想到用hash..反正我是没往那里想,看到循 ...
- 利用IDEA构建springboot应用
前提注意: 1.版本,java 1.8 maven 3.3.9 配置项目 项目版本 项目保存路径 在maven里面的conf里面的settings.xml里配置maven中央仓库 (阿里云) ...
- C++继承与构造函数、复制控制
每个派生类对象由派生类中定义的(非static)成员加上一个或多个基类子对象构成,因此,当构造.复制.赋值和撤销派生类型对象时,也会构造.复制.赋值和撤销这些基类子对象. 构造函数和复制控制成员不能继 ...
- __defineGetter__和__defineSetter__在日期中的应用
日期函数每次取年月日都要调用Date的函数,有点麻烦,通过__defineGetter__可以处理一下,就能通过Date的实例对象直接获取年月日,例如 date.year获取日期对象date的年份.月 ...
- jQuery 鼠标移入图片 显示大图并跟随鼠标移动
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...