[jBPM] - Hibernate queries on jBPM DB tables
by Laura delli Paoli
Laura delli Paoli [https://community.jboss.org/people/lauradp] created the discussion
"Hibernate queries on jBPM DB tables"
To view the discussion, visit: https://community.jboss.org/message/821535#821535
--------------------------------------------------------------
Hello everybody,
I'm trying to make a query jBPM task table, but I always get an empty list even if I can see result by DB UI.
My mapping is:
<class name="MyTask" table="task" dynamic-insert="true" dynamic-update="true">
<subselect>
select id, priority, processId, processInstanceId, processSessionId, status, workItemId
from task
</subselect>
<id column="id" name="id" type="java.lang.Long" />
<property name="priority" column="priority" type="java.lang.Integer" />
<property name="processId" column="processId" type="java.lang.String" />
<property name="processInstanceId" column="processInstanceId" type="java.lang.Long" />
<property name="processSessionId" column="processSessionId" type="java.lang.Integer" />
<property name="status" column="status" type="java.util.String" />
<property name="workItemId" column="workItemId" type="java.lang.Long" />
</class>
the query is:
session.createCriteria(MyTask.class).add(Restrictions.eq("processInstanceId", new Long(pid))).list();
Am I missing somethin??
thanks
Laura
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/821535#821535]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
11 years, 7 months
[Beginner's Corner] - How to isolate two web apps(War) having almost same jars in both apps
by Kulbhushan patil
Kulbhushan patil [https://community.jboss.org/people/kulbhushan333] created the discussion
"How to isolate two web apps(War) having almost same jars in both apps"
To view the discussion, visit: https://community.jboss.org/message/821494#821494
--------------------------------------------------------------
Hi All,
I am new to jboss . I am using jboss5.1.0 GA.
I have two web application(.war) having most of them uses same jars. I some jars there are configured xml files it it.
I tried to isolate complete both apps but not successful.
Below i have printed the server console sysouts.
I have configured jboss-web.xml of both apps as follows.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jboss-web PUBLIC "-//JBoss//DTD Web Application 5.0//EN" " http://www.jboss.org/j2ee/dtd/jboss-web_5_0.dtd http://www.jboss.org/j2ee/dtd/jboss-web_5_0.dtd">
<jboss-web>
<class-loading java2ClassLoadingCompliance="false">
<loader-repository>org.zkoss:archive=GenericMigrationUI
<loader-repository-config>java2ParentDelegation=false</loader-repository-config>
</loader-repository>
</class-loading>
<context-root>/GenericMigrationUI</context-root>
</jboss-web>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jboss-web PUBLIC "-//JBoss//DTD Web Application 5.0//EN" " http://www.jboss.org/j2ee/dtd/jboss-web_5_0.dtd http://www.jboss.org/j2ee/dtd/jboss-web_5_0.dtd">
<jboss-web> <class-loading java2ClassLoadingCompliance='true'> <loader-repository> jbia.loader:loader=opensso <loader-repository-config> java2ParentDelegation=true </loader-repository-config> </loader-repository> </class-loading> </jboss-web>
Also i have configured classloading.xml as follows.
<classloading xmlns="urn:jboss:classloading:1.0" parent-first="false" domain="DefaultDomain" name="eQubeMI.war" top-level-classloader="true" parent-domain="Ignored" export-all="NON_EMPTY" import-all="true">
</classloading>
and
<classloading xmlns="urn:jboss:classloading:1.0" parent-first="false" domain="GenericMigrationUI" name="GenericMigrationUI.war" top-level-classloader="true">
</classloading>
The zweb.jar,zul.jar,zhtml.jar... etc. such jars are same in both war files.
I am getting following error . Please suggest me solution.
16:21:51,642 INFO [zkoss] Starting ZK 5.0.5 CE (build: 2010110316)
16:21:51,658 INFO [zkoss] Loading system default
16:21:51,720 WARNING [zkoss] Replicate resource: zk
Overwrite vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/GenericMigrationUI.war/WEB-INF/lib/zk.jar/
metainfo/zk/config.xml
with vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.war/WEB-INF/lib/zk.jar/metainfo/zk/conf
ig.xml
16:21:51,751 SEVERE [zkoss] Unable to load a listenr, [SYS vfszip:/E:/jboss-5.1.0.GA/server/default/
deploy/eQubeMI.war/WEB-INF/lib/breeze-5.0.6.1.jar/metainfo/zk/config.xml line 11 col 12]
org.zkoss.zk.ui.UiException: Unknown listener: class org.zkoss.theme.breeze.BreezeThemeWebAppInit
at org.zkoss.zk.ui.util.Configuration.addListener(Configuration.java:322)
at org.zkoss.zk.ui.sys.ConfigParser.parseListener(ConfigParser.java:245)
at org.zkoss.zk.ui.sys.ConfigParser.parseListeners(ConfigParser.java:240)
at org.zkoss.zk.ui.sys.ConfigParser.parseConfigXml(ConfigParser.java:171)
at org.zkoss.zk.ui.http.WebManager.<init>(WebManager.java:128)
at org.zkoss.zk.ui.http.DHtmlLayoutServlet.init(DHtmlLayoutServlet.java:111)
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1048)
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:950)
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4122)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4421)
at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeplo
yment.java:310)
at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.ja
va:142)
at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)
at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)
at org.jboss.web.deployers.WebModule.start(WebModule.java:97)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
at $Proxy38.start(Unknown Source)
at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycle
Action.java:42)
at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycle
Action.java:37)
at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(Sim
pleControllerContextAction.java:62)
at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControlle
rContextAction.java:71)
at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerC
ontextActions.java:51)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.
java:348)
at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext
.java:286)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93
4)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1
082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9
84)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
at org.jboss.system.ServiceController.start(ServiceController.java:460)
at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)
at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)
at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(Abstra
ctSimpleRealDeployer.java:62)
at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer
.java:50)
at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja
va:1157)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja
va:1178)
at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.
java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93
4)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1
082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9
84)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)
at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process(MainDeploye
rAdapter.java:117)
at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install(ProfileDepl
oyAction.java:70)
at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install(AbstractP
rofileAction.java:53)
at org.jboss.system.server.profileservice.repository.AbstractProfileService.install(Abstract
ProfileService.java:361)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.
java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93
4)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1
082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9
84)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile(
AbstractProfileService.java:306)
at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootst
rap.java:271)
at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)
at org.jboss.Main.boot(Main.java:221)
at org.jboss.Main$1.run(Main.java:556)
at java.lang.Thread.run(Thread.java:662)
16:21:51,860 INFO [zkoss] Parsing jndi:/localhost/GenericMigrationUI/WEB-INF/zk.xml
16:21:52,032 WARNING [zkoss] Replicated language: xhtml, overriden by [LanguageDefinition: xhtml]
16:21:52,297 WARNING [zkoss] Replicated language: xul/html, overriden by [LanguageDefinition: xul/ht
ml]
16:21:52,360 WARNING [zkoss] Replicate resource: databind
Overwrite vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/GenericMigrationUI.war/WEB-INF/lib/zkplus.
jar/metainfo/zk/lang-addon.xml
with vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.war/WEB-INF/lib/zkplus.jar/metainfo/zk/
lang-addon.xml
16:21:52,438 WARNING [zkoss] Replicate resource: fckez
Overwrite vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.war/WEB-INF/lib/fckez.jar/metainfo
/zk/lang-addon.xml
with vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/GenericMigrationUI.war/WEB-INF/lib/fckez.jar/me
tainfo/zk/lang-addon.xml
16:21:52,469 WARNING [zkoss] Replicate resource: expressionBuilderLaunchers
Overwrite vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.war/WEB-INF/lib/bpmExpressionBuild
erComponent.jar/metainfo/zk/lang-addon.xml
with vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/GenericMigrationUI.war/WEB-INF/lib/bpmExpressio
nBuilderComponent.jar/metainfo/zk/lang-addon.xml
16:21:52,484 WARNING [zkoss] Replicate resource: customSelectFromListComponent
Overwrite vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.war/WEB-INF/lib/customSelectFromLi
stComponent.jar/metainfo/zk/lang-addon.xml
with vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/GenericMigrationUI.war/WEB-INF/lib/customSelect
FromListComponent.jar/metainfo/zk/lang-addon.xml
16:21:52,500 WARNING [zkoss] Replicate resource: basicComponents
Overwrite vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.war/WEB-INF/lib/components.jar/met
ainfo/zk/lang-addon.xml
with vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/GenericMigrationUI.war/WEB-INF/lib/components.j
ar/metainfo/zk/lang-addon.xml
16:21:52,547 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/codemirror.jar/metainfo/zk/lang-addon.xml
>>java.lang.IllegalArgumentException: class org.zkoss.codemirror.Codemirror must implement interface
org.zkoss.zk.ui.Component
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.<init>(ComponentDefinitionImpl.java
:97)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:435)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.getAll(LanguageDefinition.java:280)
>>...
16:21:52,640 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/GenericMi
grationUI.war/WEB-INF/lib/components.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.filter.eQFilterCustomValueTable
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:424)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:21:52,656 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/tokenCVT.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.eQMsgCvt
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:424)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:21:52,687 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/canvascomponent.jar/metainfo/zk/lang-addon.xml
>>java.lang.IllegalArgumentException: class com.eqtechnologic.eqube.commonui.components.canvas.eQGra
phComponent must implement interface org.zkoss.zk.ui.Component
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.<init>(ComponentDefinitionImpl.java
:97)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:435)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.getAll(LanguageDefinition.java:280)
>>...
16:21:52,703 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/mappingcanvascomponent.jar/metainfo/zk/lang-addon.xml
>>java.lang.IllegalArgumentException: class com.eqtechnologic.eqube.commonui.components.mappingcanva
s.eQMappingGraphComponent must implement interface org.zkoss.zk.ui.Component
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.<init>(ComponentDefinitionImpl.java
:97)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:435)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.getAll(LanguageDefinition.java:280)
>>...
16:21:52,750 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/transformationcanvascomponent.jar/metainfo/zk/lang-addon.xml
>>java.lang.IllegalArgumentException: class com.eqtechnologic.eqube.mi.components.transformationcanv
as.eQTransformationGraphComponent must implement interface org.zkoss.zk.ui.Component
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.<init>(ComponentDefinitionImpl.java
:97)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:435)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.getAll(LanguageDefinition.java:280)
>>...
16:21:52,781 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/categoryTreeComponent.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.eQCategoryTree
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:424)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:21:52,828 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/conncombo.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.eQConnCombobox
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:424)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:21:52,843 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/miscriptcomponents.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.mi.components.miscriptcomponent.eQPreScriptbox
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:393)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:21:52,874 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/bpmcanvascomponent.jar/metainfo/zk/lang-addon.xml
>>java.lang.IllegalArgumentException: class com.eqtechnologic.eqube.mi.components.bpmcanvas.eQBPMGra
phComponent must implement interface org.zkoss.zk.ui.Component
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.<init>(ComponentDefinitionImpl.java
:97)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:435)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.getAll(LanguageDefinition.java:280)
>>...
16:21:52,890 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/retryTranscomponent.jar/metainfo/zk/lang-addon.xml
>>java.lang.IllegalArgumentException: class com.eqtechnologic.eqube.mi.components.retry.eQRetryGraph
Component must implement interface org.zkoss.zk.ui.Component
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.<init>(ComponentDefinitionImpl.java
:97)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:435)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.getAll(LanguageDefinition.java:280)
>>...
16:21:52,906 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/expressionBuilderComponent.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.expressionbuilder.eQExpressionBuilder
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:393)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:21:52,921 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/parserExpressionBuilderComponent.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.parserexpressionbuilder.eQParserExpressionBuilder
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:393)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,066 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/GenericMi
grationUI.war/WEB-INF/lib/bpmExpressionBuilderComponent.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.mi.components.bpmexpressionbuilderlauncher.eQProcessContextExprBuilderLauncher
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:393)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,066 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/inputParameterMappingGridComponent.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.eQInputParametersMappingGrid
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:424)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,081 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/processComponent.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.eQProcess
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:393)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,081 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/eQDynamicCustomValueTable.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.dynamictable.eQDynamicCustomValueTable
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:424)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,081 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/miscriptbox.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.mi.components.miscriptbox.eQMIScriptBox
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:393)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,097 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/MIBasicComponents.jar/metainfo/zk/lang-addon.xml
>>java.lang.IllegalArgumentException: class com.eqtechnologic.eqube.commonui.components.eQHelpLaunch
erTab must implement interface org.zkoss.zk.ui.Component
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.<init>(ComponentDefinitionImpl.java
:97)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:435)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.getAll(LanguageDefinition.java:280)
>>...
16:22:10,113 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/resultsetListComponent.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.eQResultsetListbox
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:393)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,113 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/edgepropertycomponent.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.edgeproperty.eQEdgeproperty
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:393)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,128 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/processlistbox.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.processlistbox.eQProcessListbox
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:424)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,159 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/eQFilter.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.filter.eQFilter
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:393)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,175 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/pckeys1.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.mi.components.eQProcessContextKeys
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:424)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,191 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/eQMLVSearch.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.eQMLVSearch.eQMLVSearch
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:393)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,206 SEVERE [zkoss] Failed to load vfszip:/E:/jboss-5.1.0.GA/server/default/deploy/eQubeMI.w
ar/WEB-INF/lib/CompleteRemapInfoComponentComponent.jar/metainfo/zk/lang-addon.xml
>>org.zkoss.zk.ui.UiException: org.zkoss.zk.ui.Component must be implemented by class com.eqtechnolo
gic.eqube.commonui.components.eQRemapInfoRenderer
>> at org.zkoss.zk.ui.metainfo.impl.ComponentDefinitionImpl.setImplementationClass(ComponentDef
initionImpl.java:287)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.parseLang(DefinitionLoaders.java:393)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load0(DefinitionLoaders.java:167)
>> at org.zkoss.zk.ui.metainfo.DefinitionLoaders.load(DefinitionLoaders.java:128)
>> at org.zkoss.zk.ui.metainfo.LanguageDefinition.init(LanguageDefinition.java:301)
>>...
16:22:10,253 INFO [TomcatDeployment] deploy, ctxPath=/
16:22:10,393 INFO [TomcatDeployment] deploy, ctxPath=/eQubeMI
16:22:10,674 INFO [http] WSSERVLET12: JAX-WS context listener initializing
16:22:13,451 INFO [monitoring] Metro monitoring rootname successfully set to: com.sun.metro:pp=/,ty
pe=WSEndpoint,name=/eQubeMI-eQMISOAService-eQMISOAPort
16:22:14,215 INFO [http] WSSERVLET14: JAX-WS servlet initializing
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/821494#821494]
Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
11 years, 7 months
[JBoss Tools] - Beta Time for JBoss Tools 4.1 and Developer Studio 7.0
by Max Rydahl Andersen
Max Rydahl Andersen [https://community.jboss.org/people/maxandersen] modified the blog post:
"Beta Time for JBoss Tools 4.1 and Developer Studio 7.0"
To view the blog post, visit: https://community.jboss.org/community/tools/blog/2013/06/05/beta-time-for...
--------------------------------------------------------------
Summer is here and Red Hat summit is close - just in time to get a feature loaded Beta of JBoss Tools and Developer Studio!
h3. JBoss Tools 4.1 and Developer Studio 7 Beta 1
+Overload+
Developer Studio: [ http://devstudio.jboss.com/earlyaccess Download] | Tools: [ http://marketplace.eclipse.org/content/jboss-tools-kepler Marketplace] [ http://www.jboss.org/tools/download Download] [ http://download.jboss.org/jbosstools/updates/development/kepler/ Update Site] | [ http://docs.jboss.org/tools/whatsnew What's New] [ http://www.jboss.com/index.html?module=bb&op=viewforum&f=201 Forums] [ http://jira.jboss.com/jira/browse/JBIDE JIRA] [ http://twitter.com/jbosstools Twitter]
JBoss Tools is a set of plugins for Eclipse that complements, enhances and goes beyond the support that exists for JBoss and related technologies in the default Eclipse distribution.
JBoss Developer Studio is a fully bundled Eclipse distribution which not only includes the majority of JBoss Tools but also all its needed dependencies and 3rd party plugins, allowing for an easy one-click and no-fuss installation.
If you are into doing your own bleeding edge eclipse plugin assembly, JBoss Tools is for you; if you are more into having something that "Just Works" then JBoss Developer Studio is the way to go.
h1. Installation
This release is a Beta and is built against http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/... Kepler M7 (Eclipse 4.3M7) but should work with the ongoing http://www.eclipse.org/downloads/index-developer.php Eclipse RC builds also too. When you report bugs/issues please mention which Eclipse Kepler build you used.
>From within Eclipse Kepler you can use the Marketplace or http://devstudio.jboss.com/earlyaccess Download Developer Studio and be sure to have the exact correct Eclipse base.
h1. Improvements
This time we got a wide range of new features/improvements and we got a video showing some of these:
And below is some of these highlights plus a few extras that did not made it into the video.
h3. LiveReload
In the previous release we added LiveReload support to eclipse allowing you to have your browser automatically refresh (live reload) when saving files in Eclipse - no need to going back and forth your editor and the browser.
This only worked for file:// based urls though. Content served out from a server (i.e. localhost) was refreshed too early and you could not use it for remote devices like a tablet - this is now possible in Beta1 with Server Mode and LiveReload Proxy
h5. Server Mode
Server mode means you can use live reload not only for plain HTML pages but also when editing JSF content like xhtml. Giving you fast and easy feedback.
This works automatically for any JBoss server adapters - no setup needed besides creating and starting Live Reload server from Eclipse and use Live Reload plugin in your browser.
h4. LiveReload Proxying
If your browser does not have the live reload plugin, for example on your tablet or mobile phone or you want to use Safari browser, it is normally requried to manually add the livereload.js in every html.
That can be tedious and requires changes to files you might not want to commit to your source repository - thus we've added so called "LiveReload Proxying".
http://docs.jboss.org/tools/whatsnew/images/LiveReload_server_configurati... http://docs.jboss.org/tools/whatsnew/images/LiveReload_server_configurati...
It is enabled by clicking "Enable Proxy" server and this allow you to proxy your file:// urls and have it served out on localhost:35729/<projectname>/<filepath>.
For security reasons, we don't enable remote connections by default, thus if you want mobile devices to be able to load the page, enable "Allow Remote Connections"
and finally enable "Inject the livereload.js script in HTML pages" to have live reload automatically work in browsers without the live reload plugin.
Try it out and let us know if you like it.
h3. BrowserSim synched browsing
BrowserSim used to do testing of your web pages on mobile devices with a beautiful skin now has support for showing and synchronize browsing across multiple devices.
http://docs.jboss.org/tools/whatsnew/browsersim/images/4.1.0.Beta1/Browse... http://docs.jboss.org/tools/whatsnew/browsersim/images/4.1.0.Beta1/Browse...
This is useful to view both horizontal and landscape mode at the same time but also to view how layout is different on different devices.
h3. Forge 1 Wizards
The majority of the feedback we got for the awesome integration of Forge into Eclipse was that many preferred to use a wizard over only having access to a "command line style" UI.
Part of Forge 2 is to make that happen natively but is not released yet - thus in this version we've fronted some of the Forge 1 commands with wizards to make Forge 1 easier to use today.
You find these wizards under "File > New > JBoss Tools".
h3. More HTML5/Mobile
The html5/mobile jquery palette added support for more elements and fixed a bug that prevented preview to work on OSX.
http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Beta1/set.png http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Beta1/set.png
h3. OpenShift Git streaming
Ever since we added OpenShift support to Eclipse we've had the problem that eGit did not allow streaming of console output when performing a push.
This mean that when doing a long running push Eclipse would just have a blank console and show "Push in progress".
In Kepler M7, eGit now includes our contribution of allowing this meaning Git users and OpenShift users can and will get streaming of the console output
and you can now see what is going on.
http://docs.jboss.org/tools/whatsnew/openshift/images/publishing-to-opens... http://docs.jboss.org/tools/whatsnew/openshift/images/publishing-to-opens...
h3. Windows 64-bit Visual Page Editor
A long standing issue for our Visual Page Editor is the lack of proper Windows 64-bit XULRunner integration.
https://community.jboss.org/people/carsten.pfeiffer Carsten Pfeiffer did an awesome contribution and made this happen. There are still some issues to figure out so we have
not enabled it by default but in Beta 1 if you with Windows 64 bit you will see the following:
http://docs.jboss.org/tools/whatsnew/vpe/images/4.1.0.Beta1/missing-xulru... http://docs.jboss.org/tools/whatsnew/vpe/images/4.1.0.Beta1/missing-xulru...
And if you follow the link you will be told to try install XULRunner from http://download.jboss.org/jbosstools/builds/staging/xulrunner-1.9.2_win64... http://download.jboss.org/jbosstools/builds/staging/xulrunner-1.9.2_win64...
and you should get:
http://docs.jboss.org/tools/whatsnew/vpe/images/4.1.0.Beta1/vpe-win64.png http://docs.jboss.org/tools/whatsnew/vpe/images/4.1.0.Beta1/vpe-win64.png
We would love to hear if this works for you on Windows 64 bit or if you still see problems.
You can give your feedback on https://issues.jboss.org/browse/JBIDE-2720 this bug
h3. Hybrid Mobile via Apache Cordova
If you are into Mobile development we now have experimental support for developing Hybrid mobile applications with Apache Cordova.
You can create a "Hybrid Mobile" project and test and develop it using the Android SDK and XCode for iOS testing.
http://docs.jboss.org/tools/whatsnew/aerogear/images/runConfigs.png http://docs.jboss.org/tools/whatsnew/aerogear/images/runConfigs.png
Note: this is only available as Experimental in JBoss Tools, not part of Developer Studio (yet)
h3. CordovaSim
To help testing hybrid mobile development we've extended our BrowerSim to use Ripple to provide a way to do portable testing (meaning you do not necessarily need Android or XCode installed to do development)
http://docs.jboss.org/tools/whatsnew/browsersim/images/4.1.0.Beta1/Cordov... http://docs.jboss.org/tools/whatsnew/browsersim/images/4.1.0.Beta1/Cordov...
Give it a try :)
Note: this is only available as Experimental in JBoss Tools, not part of Developer Studio (yet)
h3. Arquillian
As a last but definitely not least feature we've added in tooling to enhance your experience with Arquillian.
You can now easily enable it on Maven projects (we add in the proper dependencies and profiles) and then provide configuration of a JUnit launch with Arquillian specific features.
http://docs.jboss.org/tools/whatsnew/arquillian/images/ArquillianTab.png http://docs.jboss.org/tools/whatsnew/arquillian/images/ArquillianTab.png
And there is an Arquillia Cruiser view to show what the archive will contain.
http://docs.jboss.org/tools/whatsnew/arquillian/images/ArquilliaCruiser.png http://docs.jboss.org/tools/whatsnew/arquillian/images/ArquilliaCruiser.png
Note: this is only available as Experimental in JBoss Tools, not part of Developer Studio (yet)
h3. Where is WildFly ?
The JBoss AS project was recently renamed to http://www.wildfly.org WildFly and did their first Alpha1 release. We plan on adding adapter specifically for WildFly in next release.
For now you should be able to use JBoss AS7.1 and EAP 6.1 adapter since Wildfly is still compatible with these.
h2. Giving Feedback
There are more news and screenshots in http://docs.jboss.org/tools/whatsnew What's New, and if you got an idea to an improvement or found a bug do not hestiate to open an issue in our https://jira.jboss.org/jira/browse/JBIDE issue tracker.
h2. What's Next ?
We plan on having an additional Beta2 based on feedback from this release thus please give it a try, contact us on our https://community.jboss.org/community/tools?view=discussions forum with feedback and irc if you are interested in contributing!
Have fun!
--------------------------------------------------------------
Comment by going to Community
[https://community.jboss.org/community/tools/blog/2013/06/05/beta-time-for...]
11 years, 7 months
[JBoss Tools] - Beta Time for JBoss Tools 4.1 and Developer Studio 7.0
by Max Rydahl Andersen
Max Rydahl Andersen [https://community.jboss.org/people/maxandersen] modified the blog post:
"Beta Time for JBoss Tools 4.1 and Developer Studio 7.0"
To view the blog post, visit: https://community.jboss.org/community/tools/blog/2013/06/05/beta-time-for...
--------------------------------------------------------------
Summer is here and Red Hat summit is close - just in time to get a feature loaded Beta of JBoss Tools and Developer Studio!
h3. JBoss Tools 4.1 and Developer Studio 7 Beta 1
+Overload+
Developer Studio: [ http://devstudio.jboss.com/earlyaccess Download] | Tools: [ http://marketplace.eclipse.org/content/jboss-tools-kepler Marketplace] [ http://www.jboss.org/tools/download Download] [ http://download.jboss.org/jbosstools/updates/development/kepler/ Update Site] | [ http://docs.jboss.org/tools/whatsnew What's New] [ http://www.jboss.com/index.html?module=bb&op=viewforum&f=201 Forums] [ http://jira.jboss.com/jira/browse/JBIDE JIRA] [ http://twitter.com/jbosstools Twitter]
JBoss Tools is a set of plugins for Eclipse that complements, enhances and goes beyond the support that exists for JBoss and related technologies in the default Eclipse distribution.
JBoss Developer Studio is a fully bundled Eclipse distribution which not only includes the majority of JBoss Tools but also all its needed dependencies and 3rd party plugins, allowing for an easy one-click and no-fuss installation.
If you are into doing your own bleeding edge eclipse plugin assembly, JBoss Tools is for you; if you are more into having something that "Just Works" then JBoss Developer Studio is the way to go.
h1. Installation
This release is a Beta and is built against http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/... Kepler M7 (Eclipse 4.3M7) but should work with the ongoing http://www.eclipse.org/downloads/index-developer.php Eclipse RC builds also too. When you report bugs/issues please mention which Eclipse Kepler build you used.
>From within Eclipse Kepler you can use the Marketplace or http://devstudio.jboss.com/earlyaccess Download Developer Studio and be sure to have the exact correct Eclipse base.
h1. Improvements
This time we got a wide range of new features/improvements and we got a video showing some of these:
And below is some of these highlights plus a few extras that did not made it into the video.
h3. LiveReload
In the previous release we added LiveReload support to eclipse allowing you to have your browser automatically refresh (live reload) when saving files in Eclipse - no need to going back and forth your editor and the browser.
This only worked for file:// based urls though. Content served out from a server (i.e. localhost) and you could not use it for remote devices like a tablet - this is now possible in Beta1 with Server Mode and LiveReload Proxy
h5. Server Mode
Server mode means you can use live reload not only for plain HTML pages but also when editing JSF content like xhtml. Giving you fast and easy feedback.
This works automatically for any JBoss server adapters - no setup needed besides creating and starting Live Reload server from Eclipse and use Live Reload plugin in your browser.
h4. LiveReload Proxying
If your browser does not have the live reload plugin, for example on your tablet or mobile phone or you want to use Safari browser it is normally requried to manually add the livereload.js in every html.
That can be tedious and require changes to files you might not want to commit to your source repository - thus we've added so called "LiveReload Proxying".
http://docs.jboss.org/tools/whatsnew/images/LiveReload_server_configurati... http://docs.jboss.org/tools/whatsnew/images/LiveReload_server_configurati...
It is enabled by clicking "Enable Proxy" server and this allow you to proxy your file:// urls and have it served out on localhost:35729/<projectname>/<filepath>.
For security reasons we don't enable remote connections by default, thus if you want mobile devices to be able to load the page enable "Allow Remote Connections"
and finally enable "Inject the livereload.js script in HTML pages" to have live reload automatically work in browsers without the live reload plugin.
Try it out and let us know if you like it.
h3. BrowserSim synched browsing
BrowserSim used to do testing of your web pages on mobile devices with a beautiful skin now has support for showing and synchronize browsing across multiple devices.
http://docs.jboss.org/tools/whatsnew/browsersim/images/4.1.0.Beta1/Browse... http://docs.jboss.org/tools/whatsnew/browsersim/images/4.1.0.Beta1/Browse...
This is useful to view both horizontal and landscape mode at the same time but also to view how layout is different on different devices.
h3. Forge 1 Wizards
The majority of the feedback we got for the awesome integration of Forge into Eclipse was that many preferred to use a wizard over only having access to a "command line style" UI.
Part of Forge 2 is to make that happen natively but is not released yet - thus in this version we've fronted some of the Forge 1 commands with wizards to make Forge 1 easier to use today.
You find these wizards under "File > New > JBoss Tools".
h3. More HTML5/Mobile
The html5/mobile jquery palette added support for more elements and fixed a bug that prevented preview to work on OSX.
http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Beta1/set.png http://docs.jboss.org/tools/whatsnew/jst/images/4.1.0.Beta1/set.png
h3. OpenShift Git streaming
Ever since we added OpenShift support to Eclipse we've had the problem that eGit did not allow streaming of console output when performing a push.
This mean that when doing a long running push Eclipse would just have a blank console and show "Push in progress".
In Kepler M7, eGit now includes our contribution of allowing this meaning Git users and OpenShift users can and will get streaming of the console output
and you can now see what is going on.
http://docs.jboss.org/tools/whatsnew/openshift/images/publishing-to-opens... http://docs.jboss.org/tools/whatsnew/openshift/images/publishing-to-opens...
h3. Windows 64-bit Visual Page Editor
A long standing issue for our Visual Page Editor is the lack of proper Windows 64-bit XULRunner integration.
https://community.jboss.org/people/carsten.pfeiffer Carsten Pfeiffer did an awesome contribution and made this happen. There are still some issues to figure out so we have
not enabled it by default but in Beta 1 if you with Windows 64 bit you will see the following:
http://docs.jboss.org/tools/whatsnew/vpe/images/4.1.0.Beta1/missing-xulru... http://docs.jboss.org/tools/whatsnew/vpe/images/4.1.0.Beta1/missing-xulru...
And if you follow the link you will be told to try install XULRunner from http://download.jboss.org/jbosstools/builds/staging/xulrunner-1.9.2_win64... http://download.jboss.org/jbosstools/builds/staging/xulrunner-1.9.2_win64...
and you should get:
http://docs.jboss.org/tools/whatsnew/vpe/images/4.1.0.Beta1/vpe-win64.png http://docs.jboss.org/tools/whatsnew/vpe/images/4.1.0.Beta1/vpe-win64.png
We would love to hear if this works for you on Windows 64 bit or if you still see problems.
You can give your feedback on https://issues.jboss.org/browse/JBIDE-2720 this bug
h3. Hybrid Mobile via Apache Cordova
If you are into Mobile development we now have experimental support for developing Hybrid mobile applications with Apache Cordova.
You can create a "Hybrid Mobile" project and test and develop it using the Android SDK and XCode for iOS testing.
http://docs.jboss.org/tools/whatsnew/aerogear/images/runConfigs.png http://docs.jboss.org/tools/whatsnew/aerogear/images/runConfigs.png
Note: this is only available as Experimental in JBoss Tools, not part of Developer Studio (yet)
h3. CordovaSim
To help testing hybrid mobile development we've extended our BrowerSim to use Ripple to provide a way to do portable testing (meaning you do not necessarily need Android or XCode installed to do development)
http://docs.jboss.org/tools/whatsnew/browsersim/images/4.1.0.Beta1/Cordov... http://docs.jboss.org/tools/whatsnew/browsersim/images/4.1.0.Beta1/Cordov...
Give it a try :)
Note: this is only available as Experimental in JBoss Tools, not part of Developer Studio (yet)
h3. Arquillian
As a last but definitely not least feature we've added in tooling to enhance your experience with Arquillian.
You can now easily enable it on Maven projects (we add in the proper dependencies and profiles) and then provide configuration of a JUnit launch with Arquillian specific features.
http://docs.jboss.org/tools/whatsnew/arquillian/images/ArquillianTab.png http://docs.jboss.org/tools/whatsnew/arquillian/images/ArquillianTab.png
And there is an Arquillia Cruiser view to show what the archive will contain.
http://docs.jboss.org/tools/whatsnew/arquillian/images/ArquilliaCruiser.png http://docs.jboss.org/tools/whatsnew/arquillian/images/ArquilliaCruiser.png
Note: this is only available as Experimental in JBoss Tools, not part of Developer Studio (yet)
h3. Where is WildFly ?
The JBoss AS project was recently renamed to http://www.wildfly.org WildFly and did their first Alpha1 release. We plan on adding adapter specifically for WildFly in next release.
For now you should be able to use JBoss AS7.1 and EAP 6.1 adapter since Wildfly is still compatibile with these.
h2. Giving Feedback
There are more news and screenshots in http://docs.jboss.org/tools/whatsnew What's New, and if you got an idea to an improvement or found a bug do not hestiate to open an issue in our https://jira.jboss.org/jira/browse/JBIDE issue tracker.
h2. What's Next ?
We plan on having an additional Beta2 based on feedback from this release thus please give it a try, contact us on our https://community.jboss.org/community/tools?view=discussions forum with feedback and irc if you are interested in contributing!
Have fun!
--------------------------------------------------------------
Comment by going to Community
[https://community.jboss.org/community/tools/blog/2013/06/05/beta-time-for...]
11 years, 7 months