- 浏览: 5456 次
最新评论
文章列表
追加src/main/webapp/WEB-INF/weblogic.xml
<?xml version="1.0" encoding="UTF-8"?>
<weblogic-web-app xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=" ...
注意:以下步骤是将mule的jar包放到共通里,这样可以减小war包的大小,否则需要把所有用到的mule jar包都放到war包中。
第一步:下载安装tomcat
第二步:在tomcat根目录下新建mule-libs文件夹
第三步:将Mule-standalone中lib/user/*.jar,lib/mule/*.jar,lib/opt/*jar,lib/boot/*jar,都复制到mule-libs文件夹中
mule-common-0.11.0.jar
mule-core-3.4.0.jar
mule-core-3.4.0-tests.jar
mule-module-ann ...
1.追加src/main/webapp/WEB-INF/web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http ...
mule源代码
/*
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.transp ...
mule-3.5.0-M3-SNAPSHOT源代码
建议直接用版本一就可以了,另外两个版本我也没用,不知道具体情况
版本一:mule-mule-3.x.zip
版本二:mule-mule-3.x01_01.rar和mule-mule-3.x01_02.rar和mule-mule-3.x01_03.rar,由于文件过大,解压后合并文件
版本三:mule-mule-3.x02_01.rar和mule-mule-3.x02_02.rar,由于文件过大,解压后合并文件
HTTP Endpoint
重写mule源代码中的HttpMultipartMuleMessageFactory.java
package com.rakuten.api.cabinet.factory;
import java.io.IOException;
import java.util.Collection;
import java.util.Map;
import javax.activation.DataHandler;
import org.mule.DefaultMuleMessage;
import org.mule.api.MuleContext ...
rewrite
server {
#需要转发的监听端口,
listen 80;
server_name localhost;
#access_log logs/host.access.log main;
#Used & Product Api
#所以的path(/)都可以进这个location进行匹配
location / {
root html;
index index.html index.htm;
proxy_pass http://0.0.0.0:30008/;
#加break表示本条规则匹配完成后,终止匹配,不再匹配后面的规则。 ...