惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
D
Docker
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
美团技术团队
V
V2EX
Last Week in AI
Last Week in AI
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Microsoft Security Blog
Microsoft Security Blog
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
M
MIT News - Artificial intelligence
P
Proofpoint News Feed
B
Blog RSS Feed
博客园_首页
B
Blog
博客园 - 叶小钗
I
InfoQ
WordPress大学
WordPress大学
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
The Register - Security
The Register - Security
MyScale Blog
MyScale Blog
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
Latest news
Latest news
W
WeLiveSecurity
T
The Exploit Database - CXSecurity.com
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
Cyberwarzone
Cyberwarzone
Scott Helme
Scott Helme
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
CERT Recently Published Vulnerability Notes
C
CXSECURITY Database RSS Feed - CXSecurity.com
Recent Commits to openclaw:main
Recent Commits to openclaw:main
N
News and Events Feed by Topic
S
Secure Thoughts
The Hacker News
The Hacker News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News

博客园 - 冰雪

IBM JDK 1.4.2的垃圾回收行为(一) AIX平台上通过IBM HTTP Server下载大文件时失败 真实的幽默之哈根达斯 真实的幽默之团购卡车 无法启动MDB的侦听器,原因代码:3008 没有LD的WeekEnd 指南针 清晨6点半的街 马尔代夫还是欧洲四国,这不是问题。 在Windows平台的WebSphere Application Server 5版本中使用本地操作系统作为用户注册表启用全局安全性失败 加班,加班,在加班。 过生日啦! 逃脱小屋,中国式离婚 神秘人、亚瑟王、羽毛球、西服。 爬红螺寺,坐滑道,钓虹鳟鱼! 公司的系统要全面升级到Sieble了 在使用Tivoli Performance Viewer观察到的JMS连接工厂和连接对应的池连接属性的具体含义 体会到当老师的辛苦了 各位,我的手机芯片可能丢了。请大家最近不要用我的手机号联系我
在Window平台的WebSphere Studio Application Developer 5版本中如何更改默认的工作区
冰雪 · 2004-11-08 · via 博客园 - 冰雪

在Window平台的WebSphere Studio Application Developer 5版本中如何更改默认的工作区

产品:WebSphere Studio Application Developer(以下简称WSAD)
版本:5.0.x,5.1.x
平台:Windows

问题描述:
在默认情况下WSAD 5在启动的时候会弹出一个提示窗口让用户选择工作区。如果,用户选中了窗口下方的“将此工作空间用作缺省值并且不再显示此对话框”,那么下一次客户再运行WSAD的时候将不会弹出提示窗口让用户选择工作区。如果,用户再想更换工作区将无法进行。

解答:
在WebSphere Studio Application Developer 5版本中想要更改默认的工作区可以按照以下的3种方式进行:

方法一:用命令行方式启动并指定所用的工作区
 1. 打开命令行窗口,进入wsappdev.exe所在的目录(wsappdev.exe应该在WSAD的安装路径下)
 2. 执行命令:wsappdev.exe -data <workdirectory>,其中<workdirectory>是需要使用的工作区目录。假设要指定的工作区路径为C:\workbentch,那么命令就应该写成:wsappdev.exe -data C:\workbentch

方法二:用命令行方式启动并弹出提示窗口让用户选择工作区
 1. 打开命令行窗口,进入wsappdev.exe所在的目录
 2. 执行命令:wsappdev.exe -setworkspace 

方法三:通过更改配置文件让WSAD启动的时候弹出一个提示窗口让用户选择工作区
 1. 用文本编辑器打开wsappdev.ini文件(wsappdev.ini文件和wsappdev.exe文件在相同的路径下),默认情况下可以看到类似如下的内容:
 [Settings]
 DefaultWorkspace=<My Documents>\IBM\wsappdev51\workspace
 ProductName=IBM WebSphere Studio Application Developer
 Version=5.1.1
 Full=Yes
 KeyName=wsappdev510
 VMArgs=-Xj9
 LUMProductID=1
 LUMProductVersion=5.1.1
 Website=www.ibm.com/websphere/developer/zones/studio/appdev/ 

 [Environment Variables]

 2. 在“[Environment Variables]”的上方添加一行“SetWorkSpace=true”,保存。wsappdev.ini文件会有类似如下的内容:
 [Settings]
 DefaultWorkspace=<My Documents>\IBM\wsappdev51\workspace
 ProductName=IBM WebSphere Studio Application Developer
 Version=5.1.1
 Full=Yes
 KeyName=wsappdev510
 VMArgs=-Xj9
 LUMProductID=1
 LUMProductVersion=5.1.1
 Website=www.ibm.com/websphere/developer/zones/studio/appdev/
 SetWorkSpace=true

 [Environment Variables]

 3.关闭wsappdev.ini文件,通过菜单或者直接双击wsappdev.exe文件再次启动WSAD的时候,就会弹出一个提示窗口让用户选择工作区。