-
web.xml
由于在weblogic中通过JS异步请求直接读取XML文件,发现在IE中无法通过request.responseXML获取,因为它不认为是XML,主要是因为没有设置contentType="text/xml"
,因此需要在web.xml中添加MIME映射。 -
weblogic.xml
(与web.xml同级) 由于jar包与WebLogic自带的冲突,需设置项目jar优先。 -
ClassesFind.java
在WebLogic中普通的classloader无法获取class改用spring 2.5提供的方式查找
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 逐个文件夹,提取名称替换变量并提交 | |
for f in docker-*/; do | |
cd $f | |
echo '' | |
echo '' | |
echo $PWD | |
APP_PKG=`echo service-*.jar` | |
APP_NAME=`echo $APP_PKG | sed -E "s/(.+)-([0-9]+.*)\.jar/\1/g"` | |
APP_VERSION=`echo $APP_PKG | sed -E "s/(.+)-([0-9]+.*)\.jar/\2/g"` | |
cp Dockerfile_template Dockerfile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git 服务器安装 | |
rpm -qa curl curl-devel zlib-devel openssl-devel perl cpio expat-devel gettext-devel python-setuptools | |
wget https://git-core.googlecode.com/files/git-1.8.3.tar.gz | |
rpm -qa python-setuptools | |
wget http://centos.ustc.edu.cn/centos/5/os/x86_64/CentOS/python-setuptools-0.6c5-2.el5.noarch.rpm | |
wget https://git-core.googlecode.com/files/git-1.8.3.tar.gz | |
tar xzvf git-1.8.3.tar.gz | |
cd git-1.8.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Designed by rjf | |
var os = require( 'os' ), | |
http = require("http"), | |
url = require("url"), | |
qs = require("querystring"), | |
path = require("path"), | |
fs = require("fs"), | |
ct = 0, | |
wp = process.argv[2] || process.cwd(), // 指定目录 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# code by rjf | |
# 启动方式 | |
# cd /root/monitoring/ && nohup mt.sh & | |
# 替换路径 | |
########################################### | |
# 监控程序(默认监听init) | |
p_name=java | |
# 监控网卡(默认监听eth0) | |
eth=eth0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#------------------------------------------------- | |
# 本脚步实现git的不同commit间的增量文件提取,使用说明: | |
# wkp 工作目录 默认值当前目录(以“/”结尾) | |
# cpp 要复制的文件前缀 默认值当前目录(以“/”结尾) | |
# upn 待更新的临时文件夹 默认值update_tmp | |
# commit 指定git commit进行比较 | |
# | |
# author: [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height:100%; |