[JBoss JIRA] (WFLY-11411) ModuleClassLoader fails with ClassNotFoundException when class in a jar file
by Karl Nicholas (Jira)
[ https://issues.jboss.org/browse/WFLY-11411?page=com.atlassian.jira.plugin... ]
Karl Nicholas updated WFLY-11411:
---------------------------------
Attachment: JaxRsActivator.java
> ModuleClassLoader fails with ClassNotFoundException when class in a jar file
> ----------------------------------------------------------------------------
>
> Key: WFLY-11411
> URL: https://issues.jboss.org/browse/WFLY-11411
> Project: WildFly
> Issue Type: Bug
> Components: Class Loading
> Affects Versions: 11.0.0.Final, 14.0.0.Final
> Environment: Wildfly 11, 14, Java 1.8, Windows 10
> Reporter: Karl Nicholas
> Priority: Major
> Attachments: JaxRsActivator.java, RestSever.java
>
>
> Simple REST service with Application activator in project and Rest Server in another project with jar file fails to load.
> Works okay with EAR project structure but not with simpler WAR project structure.
> Caused by: java.lang.ClassNotFoundException: rest.service.server.RestSever from [Module "deployment.restserver7.war" from Service Module Loader]
> at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:198)
> at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:412)
> at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:400)
> at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:116)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 8 months
[JBoss JIRA] (WFLY-11411) ModuleClassLoader fails with ClassNotFoundException when class in a jar file
by Karl Nicholas (Jira)
[ https://issues.jboss.org/browse/WFLY-11411?page=com.atlassian.jira.plugin... ]
Karl Nicholas updated WFLY-11411:
---------------------------------
Attachment: RestSever.java
> ModuleClassLoader fails with ClassNotFoundException when class in a jar file
> ----------------------------------------------------------------------------
>
> Key: WFLY-11411
> URL: https://issues.jboss.org/browse/WFLY-11411
> Project: WildFly
> Issue Type: Bug
> Components: Class Loading
> Affects Versions: 11.0.0.Final, 14.0.0.Final
> Environment: Wildfly 11, 14, Java 1.8, Windows 10
> Reporter: Karl Nicholas
> Priority: Major
> Attachments: JaxRsActivator.java, RestSever.java
>
>
> Simple REST service with Application activator in project and Rest Server in another project with jar file fails to load.
> Works okay with EAR project structure but not with simpler WAR project structure.
> Caused by: java.lang.ClassNotFoundException: rest.service.server.RestSever from [Module "deployment.restserver7.war" from Service Module Loader]
> at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:198)
> at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:412)
> at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:400)
> at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:116)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 8 months
[JBoss JIRA] (WFLY-11411) ModuleClassLoader fails with ClassNotFoundException when class in a jar file
by Karl Nicholas (Jira)
[ https://issues.jboss.org/browse/WFLY-11411?page=com.atlassian.jira.plugin... ]
Karl Nicholas updated WFLY-11411:
---------------------------------
Steps to Reproduce:
Eg.
See attached files.
was:
Eg.
{{@ApplicationPath("/rs")
public class JaxRsActivator extends Application {
@Override
public Set<Class<?>> getClasses() {
Set<Class<?>> classes = new HashSet<>();
classes.add(RestSever.class);
return classes;
}
}
}}
and in other project
{{@Path("/")
public class RestSever {
@Path("")
@GET
@Produces(MediaType.TEXT_PLAIN)
public String getStatutesRoots() {
return "string";
}
}}}
> ModuleClassLoader fails with ClassNotFoundException when class in a jar file
> ----------------------------------------------------------------------------
>
> Key: WFLY-11411
> URL: https://issues.jboss.org/browse/WFLY-11411
> Project: WildFly
> Issue Type: Bug
> Components: Class Loading
> Affects Versions: 11.0.0.Final, 14.0.0.Final
> Environment: Wildfly 11, 14, Java 1.8, Windows 10
> Reporter: Karl Nicholas
> Priority: Major
>
> Simple REST service with Application activator in project and Rest Server in another project with jar file fails to load.
> Works okay with EAR project structure but not with simpler WAR project structure.
> Caused by: java.lang.ClassNotFoundException: rest.service.server.RestSever from [Module "deployment.restserver7.war" from Service Module Loader]
> at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:198)
> at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:412)
> at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:400)
> at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:116)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 8 months
[JBoss JIRA] (WFLY-11411) ModuleClassLoader fails with ClassNotFoundException when class in a jar file
by Karl Nicholas (Jira)
[ https://issues.jboss.org/browse/WFLY-11411?page=com.atlassian.jira.plugin... ]
Karl Nicholas updated WFLY-11411:
---------------------------------
Steps to Reproduce:
Eg.
{{@ApplicationPath("/rs")
public class JaxRsActivator extends Application {
@Override
public Set<Class<?>> getClasses() {
Set<Class<?>> classes = new HashSet<>();
classes.add(RestSever.class);
return classes;
}
}
}}
and in other project
{{@Path("/")
public class RestSever {
@Path("")
@GET
@Produces(MediaType.TEXT_PLAIN)
public String getStatutesRoots() {
return "string";
}
}}}
was:
Eg.
@ApplicationPath("/rs")
public class JaxRsActivator extends Application {
@Override
public Set<Class<?>> getClasses() {
Set<Class<?>> classes = new HashSet<>();
classes.add(RestSever.class);
return classes;
}
}
and in other project
@Path("/")
public class RestSever {
@Path("")
@GET
@Produces(MediaType.TEXT_PLAIN)
public String getStatutesRoots() {
return "string";
}
}
> ModuleClassLoader fails with ClassNotFoundException when class in a jar file
> ----------------------------------------------------------------------------
>
> Key: WFLY-11411
> URL: https://issues.jboss.org/browse/WFLY-11411
> Project: WildFly
> Issue Type: Bug
> Components: Class Loading
> Affects Versions: 11.0.0.Final, 14.0.0.Final
> Environment: Wildfly 11, 14, Java 1.8, Windows 10
> Reporter: Karl Nicholas
> Priority: Major
>
> Simple REST service with Application activator in project and Rest Server in another project with jar file fails to load.
> Works okay with EAR project structure but not with simpler WAR project structure.
> Caused by: java.lang.ClassNotFoundException: rest.service.server.RestSever from [Module "deployment.restserver7.war" from Service Module Loader]
> at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:198)
> at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:412)
> at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:400)
> at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:116)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 8 months
[JBoss JIRA] (WFLY-11411) ModuleClassLoader fails with ClassNotFoundException when class in a jar file
by Karl Nicholas (Jira)
Karl Nicholas created WFLY-11411:
------------------------------------
Summary: ModuleClassLoader fails with ClassNotFoundException when class in a jar file
Key: WFLY-11411
URL: https://issues.jboss.org/browse/WFLY-11411
Project: WildFly
Issue Type: Bug
Components: Class Loading
Affects Versions: 14.0.0.Final, 11.0.0.Final
Environment: Wildfly 11, 14, Java 1.8, Windows 10
Reporter: Karl Nicholas
Simple REST service with Application activator in project and Rest Server in another project with jar file fails to load.
Works okay with EAR project structure but not with simpler WAR project structure.
Caused by: java.lang.ClassNotFoundException: rest.service.server.RestSever from [Module "deployment.restserver7.war" from Service Module Loader]
at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:198)
at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:412)
at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:400)
at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:116)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 8 months
[JBoss JIRA] (DROOLS-3274) [DMN Designer] Invocation: Improve header
by Michael Anstis (Jira)
[ https://issues.jboss.org/browse/DROOLS-3274?page=com.atlassian.jira.plugi... ]
Michael Anstis commented on DROOLS-3274:
----------------------------------------
Merged top row as the old "top right" cell did *nothing*. This form is _more_ compliant with the DMN specification.
Place holder shown when no FEEL function entered; otherwise the FEEL is rendered (identically to how a {{LiteralExpression}} is rendered).
> [DMN Designer] Invocation: Improve header
> -----------------------------------------
>
> Key: DROOLS-3274
> URL: https://issues.jboss.org/browse/DROOLS-3274
> Project: Drools
> Issue Type: Enhancement
> Components: DMN Editor
> Affects Versions: 7.14.0.Final
> Reporter: Michael Anstis
> Assignee: Michael Anstis
> Priority: Minor
> Labels: drools-tools
> Attachments: DROOLS-3274-FEEL.png, DROOLS-3274-no-FEEL.png
>
>
> Requested by [~tirelli]:
> {quote}
> On the function invocation, it is not clear where and how to set the function name for the invocation.
> {quote}
> The _header_ has two empty cells; the top right should not even be there and the other is where the function name should be entered. Think about changing the renderer to more correctly render the header - according to the DMN specification - and put a hint/place-holder for where the function should be entered.
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 8 months
[JBoss JIRA] (DROOLS-3274) [DMN Designer] Invocation: Improve header
by Michael Anstis (Jira)
[ https://issues.jboss.org/browse/DROOLS-3274?page=com.atlassian.jira.plugi... ]
Michael Anstis updated DROOLS-3274:
-----------------------------------
Attachment: DROOLS-3274-FEEL.png
DROOLS-3274-no-FEEL.png
> [DMN Designer] Invocation: Improve header
> -----------------------------------------
>
> Key: DROOLS-3274
> URL: https://issues.jboss.org/browse/DROOLS-3274
> Project: Drools
> Issue Type: Enhancement
> Components: DMN Editor
> Affects Versions: 7.14.0.Final
> Reporter: Michael Anstis
> Assignee: Michael Anstis
> Priority: Minor
> Labels: drools-tools
> Attachments: DROOLS-3274-FEEL.png, DROOLS-3274-no-FEEL.png
>
>
> Requested by [~tirelli]:
> {quote}
> On the function invocation, it is not clear where and how to set the function name for the invocation.
> {quote}
> The _header_ has two empty cells; the top right should not even be there and the other is where the function name should be entered. Think about changing the renderer to more correctly render the header - according to the DMN specification - and put a hint/place-holder for where the function should be entered.
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 8 months