- 浏览: 213293 次
- 性别:
- 来自: 广州
最新评论
-
liuyanpersonal:
你好啊
单元测试SpringMVC带文件上传的controller -
kkgoing:
teamPhotoController 这个Controlle ...
单元测试SpringMVC带文件上传的controller -
尘枉_yjava:
gwt-ext Out of memory解决办法?? 亲,办 ...
gwt-ext Out of memory解决办法 -
张传龙:
多谢大侠,我找了好久才找到
单元测试SpringMVC带文件上传的controller -
argel_lj:
关键是提示这些信息,而且后面还提示build successf ...
maven经常报Unable to find resource in repository
文章列表
线性代数英语词汇大集合 zt
- 博客分类:
- 个人
线性代数英语词汇大集合
=========================================================================
A
adjont(adjugate) of matrix A A 的伴随矩阵
augmented matrix A 的增广矩阵
B
block diagonal matrix 块对角矩阵
block matrix 块矩阵
basic solution set 基础解系
C
Cauchy-Schwarz inequality 柯西 - 许瓦兹不等式
characteristic equation ...
haproxy keepalived
- 博客分类:
- 个人
haproxy.cfg
# This is a test configuration.# It requires another server running on local port 9000, preferably httpterm# with the file 'httpterm-basic.cfg' from the same directory.## It will wait for HTTP connections on port 8000 and TCP connections on port# 8001. It will load-balance them acros ...
Let me assume that you have a 3rd party 32-bit COM DLL provided by a vendor. The DLL works fine on 32bit Operating system and the moment you move to a x64 environment it does not work even though you have tried to register it through regsv32.
Also let me assume that the name of the DLL is "AS ...
Apache+tomcat均衡负载配置
简述:
apache均衡负载需要配置Apache,如果tomcat之间需要集群,就还需要tomcat。
apache的配置方式可以有2种,mod_proxy方式和mod_jk方式,均
在设置好新的platform sdk之后,编译原有系统报:
D:\Program Files\Microsoft Visual Studio\VC98\INCLUDE\Mshtml.h(16768) : error C2367: 'IHTMLControlElement' : redefinition
把
D:\Program Files\Microsoft Visual Studio\VC98\INCLUDE\Mshtml.h
的
interface DECLSPEC_UUID("04598fc6-866c-11cf-ab7c-00aa00c08fcf")
换成
inte ...
大多数人可能用不到wince的这个功能,事实它的这个功能也非常的有用,但是对于不知道的人来说,想入门还是很难的,简单的添加web服务器比较简单,让我一步步的讲给各位吧,供Wince的爱好者共同学习,这篇文章共分四部分,其中第二部分讲述的ISAPI的实现方式,最重要的是第三、第四部分的内容,以和大家共享之。如果那位要用这篇文章,请注明出处:
第一步:添加web server到NK
CoreOS-CEBASE -Windows CE devices-Communication Services and Networking-Servers-Web Server,如果需要ASP,加上JScript或者 ...
iis设置isapi应用
- 博客分类:
- 个人学习日记
不需要设置isapi筛选器,直接拷贝dll到网站下,输入dll形式的网址就能使用了,需要留意到是,dll要用到是release版本的。如果用debug版本的,会访问失败的,在系统事件日志那可以看到原因,是缺少某些vc或者vs2005的库造成的。
将pb生成的release目录下的servers.reg里的:
[HKEY_LOCAL_MACHINE\COMM\HTTPD\VROOTS\/]
@="$REDIRECT"
"Redirect"="/remoteadmin/"
注释了就可以了,然后build and sysgen current bsp
环境IIS6 + Python2.6,其他版本都差不多。
新建Web服务扩展,py,要求的文件填写:
D:\Python26\python.exe %s %s
网站>属性>主目录配置>映射>添加:
扩展名:.py
可执行文件填写:"D:\Python26\python.exe" %s %s
print ('Status: 200 OK')
print ('Content-Type: text/html')
print ('')
print ('<h1>Hello, Python</h1>')
需要注意,测试文件里最好不要 ...
需求是从sql2005读取数据,然后写到另外一个oracle库中,尝试过jotm和atomikos两种,很多人都说atomikos好些,但它对sql2005的支持好像不太好,配置后有些报错,官方文档所sql2005配置起来比较麻烦,需要在数据库端作配置的。
所以使用jotm,使用的版本是xapool-1.5.0。过程中遇到了一些问题,由于需要数据库遇到断网、数据库重启等情况后能自动重连,所以需要配置checkLevelObject,但配置了<property name="checkLevelObject"><value>3</value> ...
sql2005循环执行插入
- 博客分类:
- 个人学习日记
declare @rowNo int
set @rowNo=1
while @rowNo<=6000--对6000次循环操作
begin
--这儿对每一行要进行的操作的代码
insert into ..
set @rowNo=@rowNo+1
end
CREATE PROCEDURE dbo.UspOutputData
@tablename sysname
AS
declare @column varchar(1000)
declare @columndata varchar(1000)
declare @sql varchar(4000)
declare @xtype tinyint
declare @name sysname
declare @objectId int
declare @objectname sysname
declare @ident int
set nocount on
set @object ...
ORA-01034: ORACLE not available
ORA-27121: unable to determine size of shared memory segment
Linux Error: 13: Permission denied
主要是因为oracle安装程序没有给oracle这个可执行程序设置正确的setuid。这样设置一下:
$ cd $ORACLE_HOME/bin
$ chmod 6751 oracle
结果类似这样就行了。
$ ls -l $ORACLE_HOME/bin/oracle
-rwsr-s--x 1 oracle oinstall 23352 ...
把home/oracle下的.bash_profile修改为,$ORACLE_HOME/bin在先,$PATH:$HOME/bin在后,文件内容如下:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
unset USERNAME
ORACLE_BASE=/oracle/product/10.2.0/db_1
ORACLE_HOME=$ORACLE_BASE
...
oracle将blob的图片导出到文件夹
- 博客分类:
- oracle
create or replace procedure photo_dump(IDENTITYID in varchar2,filename in varchar2) is
l_file UTL_FILE.FILE_TYPE;
l_buffer RAW(32767);
l_amount BINARY_INTEGER := 32767;
l_pos INTEGER := 1;
l_blob BLOB;
l_blob_len INTEGER;
begin
SELECT PHOTO
INTO l_blob
FROM TB_SUCCESS
WHERE IDENTITY_ID = IDENTITYID;
...