[JBoss JIRA] Created: (JBIDE-8695) Seam Solder generic bean validation.
by Alexey Kazakov (JIRA)
Seam Solder generic bean validation.
------------------------------------
Key: JBIDE-8695
URL: https://issues.jboss.org/browse/JBIDE-8695
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: cdi (jsr-299)
Reporter: Alexey Kazakov
Assignee: Alexey Kazakov
Fix For: 3.3.x
The type produced by generic configuration point must be the type declared in generic configuration annotation.
For example if we have the following generic configuration annotation:
{code:title=ACMEQueue.java|borderStyle=solid}
@Retention(RUNTIME)
@GenericType(MessageSystemConfiguration.class)
@interface ACMEQueue {
String name();
}
{code}
then the related configuration points must produce beans with the same type:
{code:title=MyMessageQueues.java|borderStyle=solid}
class MyMessageQueues {
@Produces
@ACMEQueue("defaultQueue")
MessageSystemConfiguration defaultQueue = new MessageSystemConfiguration();
...
{code}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months
[JBoss JIRA] Created: (JBIDE-7851) Better usability of feature 'touch web.xml'
by Libor Zoubek (JIRA)
Better usability of feature 'touch web.xml'
-------------------------------------------
Key: JBIDE-7851
URL: https://jira.jboss.org/browse/JBIDE-7851
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: infinispan
Affects Versions: 3.2.0.Beta2
Reporter: Libor Zoubek
Assignee: Max Andersen
People keep asking me, if JBDS or tools can simply touch web.xml. When they develop, they try to 'Full publish' on the deployed project, which does not actually touch web.xml (why?) They workaround it touching it by hand or simply editing and saving trivial change.
Almost nobody including me is able to use our button in main toolbar. That is probably because almost nobody uses the main toolbar and does not expect such feature there.
Can this action be added to context menu of deployed archive and possibly have some shortcut for it?
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months
[JBoss JIRA] Created: (JBIDE-8519) ?floor, ?ceiling and ?round are not recognized by FreeMarker IDE
by Rafal Piotrowski (JIRA)
?floor, ?ceiling and ?round are not recognized by FreeMarker IDE
----------------------------------------------------------------
Key: JBIDE-8519
URL: https://issues.jboss.org/browse/JBIDE-8519
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: FreeMarker
Environment: Ubuntu Linux
Eclipse Helios Java EE (Build id: 20100917-0705)
FreeMarker IDE 1.1.0.v20110215-1224-H22-GA
Reporter: Rafal Piotrowski
Priority: Minor
Sample code:
[#ftl]
[#assign testlist=[0, 1, -1, 0.5, 1.5, -0.5, -1.5, 0.25, -0.25, 1.75, -1.75] /]
[#list testlist as result]
${result} ?floor=${result?floor}
${result} ?ceiling=${result?ceiling}
${result} ?round=${result?round}
[/#list]
is causing parse errors in eclipse, because plugin is using freemarker 2.3.8. These functions are in Freemarker from version 2.3.13 (http://freemarker.sourceforge.net/docs/ref_builtins_number.html#ref_built...).
I have tried to add new freemarker library to plugin directory and change Bundle-ClassPath in META-INF/MANIFEST.MF, but it didn't work.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months