[JBoss JIRA] (JBIDE-12452) Add support for creating and auto-discovering JBoss AS "user instances"
by Dan Allen (JIRA)
Dan Allen created JBIDE-12452:
---------------------------------
Summary: Add support for creating and auto-discovering JBoss AS "user instances"
Key: JBIDE-12452
URL: https://issues.jboss.org/browse/JBIDE-12452
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: JBossAS/Servers
Affects Versions: 3.3.1
Environment: Fedora 17 and above
Fedora JBoss AS package (jboss-as)
Reporter: Dan Allen
Assignee: Rob Stryker
The Fedora JBoss AS package supports creating user instances of JBoss AS. A user instance allows an unprivileged user to run JBoss AS out of that user's home directory. An instance is created using the jboss-as-cp script. For example:
{code}
jboss-as-cp -l $HOME/applications/jboss-as-user-instance
{code}
The user instance is skinny, meaning it only contains the configuration files for the instance. The libraries are kept in the system instance and referenced by the custom startup script:
{code}
JBOSS_BASE_DIR=$HOME/applications/jboss-as-user-instance /usr/share/jboss-as/bin/standalone.sh -c standalone-web.xml
{code}
JBoss Tools does not currently auto-detect these instances. However, it could offer to create and/or auto-discover them.
It's possible to get JBoss Tools to control the user instance, but it requires tweaking the startup flags in the server configuration. Here's how:
1. Have JBoss AS auto-discover the system instance at /usr/share/java
2. Open the server launch configuration
3. Uncheck the box "Always update arguments related to the runtime" so our changes don't get overwritten
4. Replace the VM arguments that contain "jboss" with:
-Dorg.jboss.boot.log.file=${env_var:HOME}/applications/jboss-as-user-instance/log/boot.log -Dlogging.configuration=file:${env_var:HOME}/applications/jboss-as-user-instance/configuration/logging.properties -Djboss.home.dir=/usr/share/jboss-as -Djboss.server.base.dir=${env_var:HOME}/applications/jboss-as-user-instance
Having native support for JBoss AS to auto-detect and configure user instances would be ideal.
If changes are required in the jboss-as-cp script, please use this issue tracker: https://bugzilla.redhat.com/buglist.cgi?component=jboss-as&product=Fedora...
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] (JBIDE-13004) Return back to WTP's original DirtyRegionProcessor clode after it is fixed in WTP 3.5
by Victor Rubezhny (JIRA)
Victor Rubezhny created JBIDE-13004:
---------------------------------------
Summary: Return back to WTP's original DirtyRegionProcessor clode after it is fixed in WTP 3.5
Key: JBIDE-13004
URL: https://issues.jboss.org/browse/JBIDE-13004
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: common/jst/core
Affects Versions: 4.0.0.Alpha1
Environment: Juno
Reporter: Victor Rubezhny
Assignee: Alexey Kazakov
Fix For: 4.0.0.Alpha2
1. Create the following class:
{code}
package test;
import javax.enterprise.inject.Produces;
import javax.inject.Named;
public class Bean_Broken {
public void foo() {
String s = "#{string.ss}";
String s2 = "#{string.ss}";
}
@Named
@Produces
public String string() {
return "";
}
}
{code}
2. Both ELs are marked as a problem
3. Copy String s2 = "#{string.ss}";
4. Delete it.
5. Past String s2 = "#{string.ss}";
6. There is no validation problem on the second EL.
7. Add " " to the second string: String s2 = "#{string.ss} ";
8. The EL has a problem annotation now.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] (JBIDE-13003) No support for inheritance in JAX-RS API scan
by Ron Ratovsky (JIRA)
Ron Ratovsky created JBIDE-13003:
------------------------------------
Summary: No support for inheritance in JAX-RS API scan
Key: JBIDE-13003
URL: https://issues.jboss.org/browse/JBIDE-13003
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Webservices
Affects Versions: 4.0.0.Alpha2
Reporter: Ron Ratovsky
Assignee: Brian Fitzpatrick
Assume:
class BaseRest {
@POST
public Response save(Object o) {
....
}
}
@Path("/url")
class RealRest extends BaseRest {}
The JAX-RS tools won't add a "POST /url" entry to the JAX-RS calls overview.
While not tested (due to another bug) - they may also apply to definitions of @PathParam's in the parent class.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] (JBIDE-12998) Support class-level view of JAX-RS calls
by Ron Ratovsky (JIRA)
Ron Ratovsky created JBIDE-12998:
------------------------------------
Summary: Support class-level view of JAX-RS calls
Key: JBIDE-12998
URL: https://issues.jboss.org/browse/JBIDE-12998
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: Webservices
Affects Versions: 4.0.0.Alpha2
Reporter: Ron Ratovsky
Assignee: Brian Fitzpatrick
In a large project with numerous REST API calls and classes, it is difficult to focus on the REST API calls that exist in a single class.
It would be beneficial if there was a view of the REST API calls for the class - either integrated in the outline view or in a new view.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] (JBIDE-12997) Class-level @PathParam's are ignored in JAX-RS outline
by Ron Ratovsky (JIRA)
Ron Ratovsky created JBIDE-12997:
------------------------------------
Summary: Class-level @PathParam's are ignored in JAX-RS outline
Key: JBIDE-12997
URL: https://issues.jboss.org/browse/JBIDE-12997
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Webservices
Affects Versions: 4.0.0.Alpha2
Environment: Win7 64 bit, Java 7, Juno SP1
Reporter: Ron Ratovsky
Assignee: Brian Fitzpatrick
When there are class-level @QueryParam members, they don't should appear as REST api query parameters for all the REST apis declared in that class and its subclasses (depending on the class members visibility).
According to the JAX-RS 1.x spec, this is a valid declaration and thus should be supported by the plugin introspection.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] (JBDS-2279) Investigate use of JRebel 5.0.1 in JBoss Central
by Nick Boldt (JIRA)
Nick Boldt created JBDS-2279:
--------------------------------
Summary: Investigate use of JRebel 5.0.1 in JBoss Central
Key: JBDS-2279
URL: https://issues.jboss.org/browse/JBDS-2279
Project: Developer Studio (JBoss Developer Studio)
Issue Type: Sub-task
Security Level: Public (Everyone can see)
Components: 3rdPartyCertification, 3rdPartyDependencies, central
Affects Versions: 6.0.0.Alpha1
Reporter: Nick Boldt
Assignee: Len DiMaggio
Fix For: 6.0.0.Beta1
Latest on update site (http://www.zeroturnaround.com/update-site/) is this:
JRebel 5.0.1.RELEASE-201207191833
We're not allowed to redistribute this, so when you're testing if this works with Eclipse 4.2 / JBT 4.0 / JBDS 6.0, please ensure that you record the version you're using to verify it's the same (or newer) than the version stated above.
Should the major version change, please update the description of this JIRA.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] (JBIDE-12990) Weird XML validation errors for JSF facelet template
by Marek Novotny (JIRA)
Marek Novotny created JBIDE-12990:
-------------------------------------
Summary: Weird XML validation errors for JSF facelet template
Key: JBIDE-12990
URL: https://issues.jboss.org/browse/JBIDE-12990
Project: Tools (JBoss Tools)
Issue Type: Bug
Affects Versions: 4.0.0.Beta1
Environment: JBoss Developer Studio 6.0.0.Beta1
Reporter: Marek Novotny
Importing http://anonsvn.jboss.org/repos/seam/branches/community/Seam_2_3/examples/...
ends with a few weird errors for blog-web project.
{noformat}
Description Resource Path Location Type
Referenced file contains errors (file:/home/mnovotny/apps/jbdevstudio6/studio/plugins/org.jboss.tools.jst.web.kb_3.4.0.Beta1-v20121018-0628-B39/taglibs/tld/html_basic.taglib.xml). For more information, right click on the message in the Problems View and select "Show Details..." index.xml /blog-web/target/m2e-wtp/web-resources line 1 XML Problem
Referenced file contains errors (file:/home/mnovotny/apps/jbdevstudio6/studio/plugins/org.jboss.tools.jst.web.kb_3.4.0.Beta1-v20121018-0628-B39/taglibs/tld/html_basic.taglib.xml). For more information, right click on the message in the Problems View and select "Show Details..." index.xml /blog-web/src/main/webapp line 1 XML Problem
cvc-elt.1: Cannot find the declaration of element 'f:view'. index.xml /blog-web/target/m2e-wtp/web-resources line 7 XML Problem
Referenced file contains errors (file:/home/mnovotny/apps/jbdevstudio6/studio/plugins/org.jboss.tools.jst.web.kb_3.4.0.Beta1-v20121018-0628-B39/taglibs/tld/facelets_jsf_core.taglib.xml). For more information, right click on the message in the Problems View and select "Show Details..." index.xml /blog-web/target/m2e-wtp/web-resources line 1 XML Problem
Referenced file contains errors (file:/home/mnovotny/apps/jbdevstudio6/studio/plugins/org.jboss.tools.jst.web.kb_3.4.0.Beta1-v20121018-0628-B39/taglibs/tld/facelets_jsf_core.taglib.xml). For more information, right click on the message in the Problems View and select "Show Details..." index.xml /blog-web/target/blog-web line 1 XML Problem
cvc-elt.1: Cannot find the declaration of element 'f:view'. index.xml /blog-web/src/main/webapp line 7 XML Problem
Referenced file contains errors (file:/home/mnovotny/apps/jbdevstudio6/studio/plugins/org.jboss.tools.jst.web.kb_3.4.0.Beta1-v20121018-0628-B39/taglibs/tld/facelets_jsf_core.taglib.xml). For more information, right click on the message in the Problems View and select "Show Details..." index.xml /blog-web/src/main/webapp line 1 XML Problem
cvc-elt.1: Cannot find the declaration of element 'f:view'. index.xml /blog-web/target/blog-web line 7 XML Problem
Referenced file contains errors (file:/home/mnovotny/apps/jbdevstudio6/studio/plugins/org.jboss.tools.jst.web.kb_3.4.0.Beta1-v20121018-0628-B39/taglibs/tld/html_basic.taglib.xml). For more information, right click on the message in the Problems View and select "Show Details..." index.xml /blog-web/target/blog-web line 1 XML Problem
{noformat}
Basically there are 3 types of error:
1. it say f:view tag definition cannot be found
2. definition of jbdevstudio6/studio/plugins/org.jboss.tools.jst.web.kb_3.4.0.Beta1-v20121018-0628-B39/taglibs/tld/facelets_jsf_core.taglib.xml is not valid
3. definition of jbdevstudio6/studio/plugins/org.jboss.tools.jst.web.kb_3.4.0.Beta1-v20121018-0628-B39/taglibs/tld/html_basic.taglib.xml is not valid
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months