- 浏览: 12796 次
最新评论
文章列表
在开发JAVA Mail时候用到了BASE64Decoder,import sun.misc.BASE64Decoder;用于编码转换。
可是Eclipse提示:Exception in thread "main" java.lang.Error: Unresolved compilation problems: Access restriction: The type BASE64Encoder is not accessible due to restriction on required library C:\Program Files\Java\jre6\ ...
使用web.py需要定义对外公布的服务路径,大致如下。
urls = (
"/tasks/?", "signin",
"/tasks/list", "listing",
"/tasks/post", "post",
"/tasks/chgpass", "chgpass",
"/tasks/act", "actions",
"/ ...
1.web.py的安装
与其他python模块安装一样,略过。
2.使用
import web
urls=(url1,controller1,
url2,controller2
.......);
web=web.application(urls,globals())
if __name__=="__main__":
app.run()
上述url对应对外公开得路径,controller为处理请求的python类名,服务启动后,会实例化controller类。
服务启动后,通过http ...
在安装python-memcached模块时候,遇到ImportError: No module named setuptools
setuptools是python的一种快速的封包发布工具。
针对这些问题,只需要安装setuptools工具即可,像其他python模块一样安装,可用于windows和linux操作系统
1.利用-v取反集合
ps -ef|grep java |grep -v grep
2.利用[]
ps -ef |grep [j]ava
项目需求在项目部署前更新war包中的配置文件
采用jar命令
u更新压缩包中某个文件
f制定操作的压缩包
jar uvf test.war /WEB-INF/conf/context.xml
注意后边目录文件,需要在当前文件夹建立对应的目录
jar uvf test.war context.xml会更新war包跟目录下的对应文件,源文件不存在的话,添加。
1).spring 对JSON的支持依赖2个jar包
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
<version>1.8.4</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson ...