- 浏览: 657184 次
- 性别:
- 来自: 成都
-
文章分类
- 全部博客 (170)
- Android (10)
- Java (35)
- PHP (3)
- Linux (3)
- Powerdesigner (2)
- dedcms (1)
- nginx (1)
- Flex (9)
- REST (2)
- Google App Engine (1)
- mysql (6)
- JAVA开源项目 (1)
- Eclipse (18)
- Eclipse Orion (1)
- Dojo (2)
- UML (1)
- Eclipse GEF EMF (4)
- Eclipse 插件开发 (6)
- OSGI (2)
- DeDeCMS (1)
- Maqetta (2)
- JavaScript (1)
- nginx php (1)
- Dojo V1.7 (2)
- Spring3 (4)
- Hibernate3 (4)
- MongoDB (3)
- Scala (2)
- DSL (1)
- Python (3)
- Maven (1)
- Tomcat (3)
- XMPP (2)
- Apache (4)
- NodeJS (1)
- SQLSERVER (2)
- HTML5 (1)
- Nexus (1)
- web服务器 (2)
- Jetty (2)
- weixin (1)
- ngrok (1)
- 网络与信息安全 (1)
最新评论
-
wangyudong:
配置有点晕,开源社区上找了一个开源的Holer,只需要设置Ac ...
用ngrok实现外网访问本地WEB项目的方法 -
lolo968:
你收集的资料没有链接
基于OSGI的框架开发小结(转) -
smartdog:
使用的maven的版本很老的,而且写的不是很清楚,建议可以参考 ...
Maven多项目依赖配置 -
Tom.X:
OSGi联盟官网:http://osgia.com
基于OSGI的框架开发小结(转) -
Miller003:
你好,我在本地测试时,删除catalina.jar和tomca ...
基于Tomcat7的HTML5 WebSocket 应用示例
Installation
Use the following update site to install the WebSphere sMash Java/Groovy plug-in.
If you need assistance with this step, open the Eclipse Help browser (Help > Help Contents ) and search for the term install .
Next, to obtain Groovy language IDE support, install the appropriate version of the GroovyEclipse plugin as described in Groovy - Eclipse Plugin
Configuration
The following instructions assume that you have never installed the WebSphere sMash Java/Groovy plug-in, and that you are using a new workspace.
- Download and install a CLI. Please visit the Command-line interface section for details.
- Open a command prompt at the <zerohome> directory.
- Type the following:
zero version
- This command bootstraps the CLI and prevents unnecessary delays during the Eclipse configuration that follows.
- In Eclipse, click Window > Preferences > WebSphere sMash
- In the Zero home field, enter the path to your <zerohome> directory.
- The plug-in will take a few moments to search for the module groups from your CLI.
- After the Loading... message disappears from the Module group field, select the module group that you would like to use for application development. For more information about module groups, please search for the phrase "module group" in the Developer's Guide .
- Click OK to exit the Preferences dialog.
You are now ready to start developing WebSphere sMash application.
Creating and running an application
To create and then run a WebSphere sMash application, complete the following steps:
- Click File > New > Project ... .
- Expand WebSphere sMash category folder near the bottom and click the WebSphere sMash Application project type.
- Click Next > .
- Enter a name for your new application and click Finish to create it. Your new project is shown with a distinctive icon beside it.
- To run your new application, right-click the project and click Run As > WebSphere sMash Application
. A message is displayed in the console indicating that the application was started on port 8080.
Note: All applications use port 8080 by default. If you have another application started, it cannot use the same port. The port is configured in the application'sconfig/zero.config
file. - Open a browser and enter
http://localhost:8080/
to see the default page of your application. It should look something like this:
- Stop your application.
Congratulations! You have created and run your first WebSphere sMash application. Continue reading to find out how you can add additional dependencies to enhance your application. You can also look at the Employee Demo or Suggest Demo for coding examples.
- zero.rar (2.6 MB)
- 下载次数: 3
发表评论
-
JVM系列三:JVM参数设置、分析(转)
2014-09-28 15:04 1088不管是YGC还是Full GC,GC过程中都会对导致程序运 ... -
Java中static、final用法小结 (转)
2012-08-26 10:51 1985一、final 1.final变量: ... -
java位操作符总结(转)
2012-08-17 11:16 1289以下是java位操作符的小总结,具体如下:二进制负数以它 ... -
Servlet生命周期与工作原理(转)
2012-08-14 16:57 1059Servlet生命周期与工作原理 Servle ... -
java堆与栈 java String分配内存空间(详解)转
2012-08-10 15:44 1294栈内存 堆内存 ... -
java类继承总结一 父类类型与子类类型之间的转化问题(转)
2012-08-06 21:13 8687java类继承总结一 父类类型与子类类型之间的转化问 ... -
java堆和栈小结(转)
2012-08-05 21:45 1060(1)JAVA中基本数据类型直 ... -
Java常见异常(Runtime Exception )小结--转
2012-08-02 21:04 1344Java常见异常(Runtime Exception ) ... -
java.lang.NoClassDefFoundError: org.objectweb.asm.Type
2012-06-03 15:27 2478在使用spring3的aop时,出现如下的错误: ja ... -
Bean named '*' must be of type [*], but was actually of type [$Proxy16]
2012-06-03 14:14 28384在用junit测试dao接口时,出现以下的错误 Caused ... -
saveOrUpdate is not valid without active transaction
2012-06-03 13:07 6879在使用Spring+Hibernate的框架时,在applic ... -
spring BeanCreationException confusion about mapping
2012-05-31 20:08 1385在进行spring3+rest配置时,出现了以下的错误: C ... -
如何获取新浪微博的登录参数
2012-05-23 20:32 77311、用Chrome的开发者工具或者Firefox的Firebu ... -
Java 程序中使用相对和绝对路径读取文件
2012-05-21 14:24 9164在Java中用File对象来创建文件时,绝对路径一般是不会出现 ... -
线程安全与线程不安全
2012-04-26 16:43 1229线程安全是针对多线程来讲的,如果所使用的公用变量在多线程 ... -
StringBuilder、StringBuffer和String的关系
2012-04-26 16:33 10161. String 类 S ... -
插件开发中如何正确使用第三方jar包
2012-04-21 20:48 2481在进行eclipse插件开发过程中,除了引用Eclipse本身 ... -
Errors running builder 'JavaScript Validator' on project '......'.
2012-04-21 20:36 31335在编译java工程时,如果出现 “Errors occu ... -
The method *** of type *** must override a superclass method
2012-04-21 20:34 1363如果在实现接口时,出现了“The metho *** o ... -
Java 1.6动态编译器 null问题
2012-03-16 10:45 15681、在java程序中用JavaCompiler compile ...
相关推荐
webSphere-jps-plugin.jar
Chapter 24 - WebSphere-Specific Servlet Issues Chapter 25 - JSP Elements Chapter 26 - JSP Examples Chapter 27 - Custom Tag Libraries Chapter 28 - Debugging Servlets and JSPs Using VisualAge ...
WebSphere MQ HP-UX 版,版本 5 发行版 3 提供以下新增的和更改的功能: WebSphere MQ HP-UX 版现在支持使用工业标准安全套接字层(SSL)保护的 WebSphere MQ 通道。有关详细信息,请参阅 WebSphere MQ Security...
websphere_plugin-cfg.xml 文件内容解析 概览 websphere_plugin-cfg.xml 文件是 IBM WebSphere 服务器插件配置文件,用于定义插件的配置信息。该文件包含多个元素和属性,用于控制插件的行为和性能。了解该文件的...
本书《Eclipse 4 Plug-in Development by Example: Beginner's Guide》是一本面向Java开发者的入门级指南,旨在教授如何利用Eclipse平台开发Eclipse插件,适合那些对Eclipse作为Java IDE有所了解但还未涉足插件开发...
websphere7.0 windows-64版本,文件过大,上传受限,下载内容为网盘地址,谢谢!
websphere-liberty-s2i 构建 Open Liberty S2I 镜像: 运行 Makefile 以生成所有图像,或通过运行生成单个图像: $ cd $IMAGE_DIR $ cekit build docker IMAGE_DIR 的示例值为images/java8/builder 、 images/java8
WebSphere MQ for Java 是 IBM 提供的一个用于 Java 开发者集成消息传递功能的库,它使得 Java 应用程序能够直接与 WebSphere MQ Server 交互,或者作为客户端连接到 WebSphere MQ 服务。这个框架提供了可靠的、跨...
### WebSphere MQ Primer – 消息传递与WebSphere MQ简介 #### 一、消息传递的基本概念 消息传递是一种用于在应用程序之间发送数据的方法,它允许应用程序通过消息队列进行通信,而无需彼此直接连接。这种架构可以...
IBM WebSphere MQ 是一个强大的中间件产品,用于在分布式系统之间可靠地传输数据。本文主要介绍如何安装配置WebSphere MQ的客户端和服务器端。 **一、安装配置** 1. 首先,使用虚拟光驱加载IBM WebSphere MQ的安装...
WebSphere Message Broker(WMB),现已被更名为IBM Integration Bus(IIB),是IBM提供的一款强大的企业服务总线(ESB)产品,用于构建和管理应用程序之间的集成。在WMB/IIB中,JavaCompute节点是一种非常重要的...
3. **Java环境**:系统中已安装符合WebSphere要求的Java Development Kit (JDK)。 #### 四、WebSphere在Myeclipse中的整合步骤 1. **启动Myeclipse**: - 打开Myeclipse,点击`Windows` -> `Preferences`。 2. *...
### ArcGIS for Java Developers #### 一、概览 《ArcGIS for Java Developers》是一份专为使用Java语言开发地理信息系统(GIS)应用程序和技术人员准备的技术文档。它提供了丰富的资源和指南,帮助开发者构建和...
Beginning Java with WebSphere provides a step-by-step guide for creating and installing both client- and server-based Java applications using Rapid Application Development v8, WebSphere Application ...
### WebSphere Virtual Enterprise -- 实现应用基础架构层面的虚拟化 #### WebSphere Virtual Enterprise 核心功能 **1. 完整的企业级应用虚拟运行环境** - **应用基础架构虚拟化**:通过将应用程序与运行环境...
WebSphere系统作为一款企业级应用服务器,广泛应用于构建、部署和管理Java EE应用程序。其安全加固对于企业IT系统来说至关重要,以下是从给出的文件内容中提炼出的WebSphere系统安全加固规范的相关知识点。 ### ...
### WebSphere连接池参数详解 在企业级应用服务器领域中,IBM WebSphere Application Server(简称WebSphere或WAS)是一款非常流行的解决方案。其中,连接池技术是提高数据库访问效率的关键技术之一。本文将深入...
2. **WebSphere MQ API**:IBM提供了Java Message Service (JMS) API和MQ Classes for Java两种方式与WebSphere MQ进行交互。JMS是标准接口,适用于多种消息中间件,而MQ Classes for Java是IBM特有的,提供了更底层...