[JBoss JIRA] (WFCORE-3804) The /host=*/server=* reload and suspend operations are not visible to the CLI
by Brian Stansberry (JIRA)
Brian Stansberry created WFCORE-3804:
----------------------------------------
Summary: The /host=*/server=* reload and suspend operations are not visible to the CLI
Key: WFCORE-3804
URL: https://issues.jboss.org/browse/WFCORE-3804
Project: WildFly Core
Issue Type: Bug
Components: Management
Reporter: Brian Stansberry
Assignee: Brian Stansberry
You can execute this op:
/host=master/server=server-one:reload
But if you try and tab complete the op name, the reload op does not appear.
Same thing with suspend.
Further, with suspend if you do:
/host=master/server=server-one:suspend(timeout=10)
the CLI will reject the op complaining that param 'timeout' is invalid. Disable validation in jboss-cli.xml though and it will work.
The reason for all this is that the read-operation-names and read-operation-description ops the CLI invokes in the background before executing an op are aimed at /host=master/server=server-one, and on the domain server root resource the 'reload' and 'suspend' operation definitions are marked with setPrivateEntry.
When the user actually executes the ops, the handler is actually on the HC, so it works fine. It's just that the CLI can't see the description of the op.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 2 months
[JBoss JIRA] (WFCORE-3802) Add main-class to the org.jboss.jandex module.xml to make it easier to run jandex
by Brad Maxwell (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3802?page=com.atlassian.jira.plugi... ]
Brad Maxwell commented on WFCORE-3802:
--------------------------------------
It will simplify the command to this below, where the jandex jar location/name is not needed, it can just reference the module name and will be consistent across versions when jar names change.
{code}
java -jar jboss-modules.jar -mp modules/ org.jboss.jandex [jandex options]
{code}
A jandex.sh / jandex.bat would further simplify this.
> Add main-class to the org.jboss.jandex module.xml to make it easier to run jandex
> ---------------------------------------------------------------------------------
>
> Key: WFCORE-3802
> URL: https://issues.jboss.org/browse/WFCORE-3802
> Project: WildFly Core
> Issue Type: Enhancement
> Components: Server
> Reporter: Brad Maxwell
> Assignee: Bartosz Spyrko-Śmietanko
> Priority: Minor
> Fix For: 5.0.0.Alpha6
>
>
> Adding main-class will let JBoss Modules know the class to run and allow you to run jandex via java -jar $JBOSS_HOME/jboss-modules -mp $JBOSS_HOME/modules org.jboss.jandex
> <module xmlns="urn:jboss:module:1.1" name="org.jboss.jandex">
> ...
> <main-class name="org.jboss.jandex.Main"/>
> ...
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 2 months
[JBoss JIRA] (WFLY-6464) JPA 2.2 container support
by Scott Marlow (JIRA)
[ https://issues.jboss.org/browse/WFLY-6464?page=com.atlassian.jira.plugin.... ]
Scott Marlow updated WFLY-6464:
-------------------------------
Summary: JPA 2.2 container support (was: JPA 2.2 Support)
> JPA 2.2 container support
> -------------------------
>
> Key: WFLY-6464
> URL: https://issues.jboss.org/browse/WFLY-6464
> Project: WildFly
> Issue Type: Sub-task
> Components: JPA / Hibernate
> Reporter: David Lloyd
> Assignee: Scott Marlow
> Fix For: 13.0.0.Beta1
>
>
> From JPA 2.2 specification appendix section A.1:
> {code}
> A.1 Maintenance Release Draft
> Created document from Java Persistence 2.1 Final Release specification.
> The following annotations have been marked @Repeatable:
> AssociationOverride
> AttributeOverride
> Convert
> JoinColumn
> MapKeyJoinColumn
> NamedEntityGraph
> NamedNativeQuery
> NamedQuery
> NamedStoredProcedureQuery
> PersistenceContext
> PersistenceUnit
> PrimaryKeyJoinColumn
> SecondaryTable
> SqlResultSetMapping
> SequenceGenerator
> TableGenerator
> Added SequenceGenerators and TableGenerators annotations.
> Added support for CDI injection into AttributeConverter classes.
> Added support for the mapping of the following java.time types:
> java.time.LocalDate
> java.time.LocalTime
> java.time.LocalDateTime
> java.time.OffsetTime
> java.time.OffsetDateTime
> Added default Stream getResultStream() method to Query interface.
> Added default Stream<X> getResultStream() method to TypedQuery interface.
> Replaced reference to JAR file specification in persistence provider bootstrapping section with more general reference to Java SE service provider requirements.
> Updated persistence.xml and orm.xml schemas to 2.2 versions.
> Updated Related Documents.
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 2 months
[JBoss JIRA] (WFLY-6464) JPA 2.2 container support
by Scott Marlow (JIRA)
[ https://issues.jboss.org/browse/WFLY-6464?page=com.atlassian.jira.plugin.... ]
Scott Marlow closed WFLY-6464.
------------------------------
Resolution: Done
> JPA 2.2 container support
> -------------------------
>
> Key: WFLY-6464
> URL: https://issues.jboss.org/browse/WFLY-6464
> Project: WildFly
> Issue Type: Sub-task
> Components: JPA / Hibernate
> Reporter: David Lloyd
> Assignee: Scott Marlow
> Fix For: 13.0.0.Beta1
>
>
> From JPA 2.2 specification appendix section A.1:
> {code}
> A.1 Maintenance Release Draft
> Created document from Java Persistence 2.1 Final Release specification.
> The following annotations have been marked @Repeatable:
> AssociationOverride
> AttributeOverride
> Convert
> JoinColumn
> MapKeyJoinColumn
> NamedEntityGraph
> NamedNativeQuery
> NamedQuery
> NamedStoredProcedureQuery
> PersistenceContext
> PersistenceUnit
> PrimaryKeyJoinColumn
> SecondaryTable
> SqlResultSetMapping
> SequenceGenerator
> TableGenerator
> Added SequenceGenerators and TableGenerators annotations.
> Added support for CDI injection into AttributeConverter classes.
> Added support for the mapping of the following java.time types:
> java.time.LocalDate
> java.time.LocalTime
> java.time.LocalDateTime
> java.time.OffsetTime
> java.time.OffsetDateTime
> Added default Stream getResultStream() method to Query interface.
> Added default Stream<X> getResultStream() method to TypedQuery interface.
> Replaced reference to JAR file specification in persistence provider bootstrapping section with more general reference to Java SE service provider requirements.
> Updated persistence.xml and orm.xml schemas to 2.2 versions.
> Updated Related Documents.
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 2 months