[Reminder] Forge Hack Night #2
by ggastald@redhat.com
Hello all !!
This is just a reminder to the Forge Hack Night, which will be held
tomorrow in the .
When: Thu 13 Sep 2012 05:00 PM -- 07:00 PM GMT-3
Where: #forge IRC channel @ irc.freenode.net
Why: Because we love Forge :)
We really look forward to meeting you there !
Best Regards,--
*George Gastaldi* | /Senior Software Engineer/
JBoss Forge Team
Red Hat
12 years, 2 months
[Reminder] Forge Hack Night #2
by gegastaldi@gmail.com
Hello all !!
This is just a reminder to the Forge Hack Night, which will be held
tomorrow. We look forward to meeting you !
Best Regards,
The Forge Team
12 years, 2 months
Java2Days abstract
by Ivan St. Ivanov
Hey,
I tried to put up an abstract for Java2Days conference. Great thanks to
Koen, who sent me four proposals. So I compiled something out of them (with
much reuse). I tried to make it as a trailer of a Hollywood blockbuster
movie, but I didn't succeed much. :-(
Anyway here it is:
*Last year Lincoln Baxter III showed the Bulgarian Java community the power
of Forge. *
*
*
*Remember, it’s a lean and versatile environment entirely written in Java,
fully using the power of CDI and offering you the possibility to
incrementally build up new functionality into your application. You can
easily setup persistence, enable RESTful web services or even create a full
JSF application in a breeze. And this can even be done on the command line.*
*
*
*But, OK, what if your task at hand cannot be fulfilled by the current
Forge functionalities? What if the broad set of plugins does not cover your
requirements? Not to worry! Forge has innate ability for integrating and
creating new functionalities. We will show you exactly how to create your
own plugin and we will give you detailed explanation on the most relevant
APIs that you could use for that purpose. *
*
*
*Finally, Forge can also be integrated in graphical IDE's opening up all
its power to users of common platforms such as Eclipse.*
*
*
*Come to this session if you want to see this powerful tool live in action!*
What do you think? Our idea was to stress more on plugin development and on
Eclipse integration with a short refresh in the beginning.
Cheers,
Ivan
12 years, 2 months
Meeting minutes 2012-09-05
by Lincoln Baxter, III
Meeting ended Wed Sep 5 14:33:20 2012 UTC. Information about MeetBot at
http://wiki.debian.org/MeetBot . (v 0.1.4)
Minutes:
http://transcripts.jboss.org/meeting/irc.freenode.org/forge/2012/forge.20...
Minutes (text):
http://transcripts.jboss.org/meeting/irc.freenode.org/forge/2012/forge.20...
Log:
http://transcripts.jboss.org/meeting/irc.freenode.org/forge/2012/forge.20...
==============
#forge Meeting
==============
Meeting started by lincolnthree at 13:59:49 UTC. The full logs are
available athttp://transcripts.jboss.org/meeting/irc.freenode.org/forge/2012/forge....
.
Meeting summary
---------------
* Agenda (lincolnthree, 14:00:52)
* Hack Night (lincolnthree, 14:00:59)
* Completer issues on windows (lincolnthree, 14:02:33)
* Hack night (lincolnthree, 14:04:51)
* Hack night #2 will take place on Thursday Sept 13th at 10PM CET (4PM
EST) (lincolnthree, 14:10:01)
* Completer issues on windows (lincolnthree, 14:10:26)
* LINK:
https://www.google.com/calendar/embed?src=tiu3ijh5nol9pv78vdvu3kkbuk%40gr...
(lincolnthree, 14:20:13)
Meeting ended at 14:33:20 UTC.
Action Items
------------
Action Items, by person
-----------------------
* **UNASSIGNED**
* (none)
People Present (lines said)
---------------------------
* lincolnthree (62)
* stalep (28)
* gastaldi (25)
* ivannov (18)
* jzelenkov (4)
* jbott (4)
Generated by `MeetBot`_ 0.1.4
.. _`MeetBot`: http://wiki.debian.org/MeetBot
--
Lincoln Baxter, III
http://ocpsoft.org
"Simpler is better."
12 years, 2 months
Forge Hack Night #2
by ggastald@redhat.com
Hello Everyone !
We want to make the Forge Hack Night really happen this time.
Is it thrusday next week good for you ? We can decide the time once we
get the date correctly set up.
Best Regards,
*George Gastaldi* | /Senior Software Engineer/
JBoss Forge Team
Red Hat
12 years, 2 months
ejb plugin: how add nested complex annotations to java class?
by JFlower
Hi,
I should add a nested (complex) annotation to MDB class, like this:
@MessageDriven(name = "MDBName", activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue
= "javax.jms.Queue"),
@ActivationConfigProperty(propertyName = "destination", propertyValue =
"blah"),
@ActivationConfigProperty(propertyName = "acknowledgeMode", propertyValue
= "Auto-acknowledge"),
@ActivationConfigProperty(propertyName = "maxSession", propertyValue =
"1"),
@ActivationConfigProperty(propertyName = "transactionTimeout",
propertyValue = "10800"),
@ActivationConfigProperty(propertyName = "dLQMaxResent", propertyValue =
"0")
})
i can't find something like this in forge code...
I tried with :
JavaClass ejb =((JavaResource) resource).getJavaSource();
ejb.addAnnotation(EjbType.MESSAGEDRIVEN.getAnnotation())
.setStringValue( "name", resource.getName().substring(0,
resource.getName().lastIndexOf(".")))
*.setStringValue( "activationConfig",*
*
+ "\"{ @ActivationConfigProperty(propertyName = \"destinationType\",
propertyValue = \"" + destinationType + "\") "*
* + "@ActivationConfigProperty(propertyName = \"destination\",
propertyValue = \"" + destinationName + "\")}");*
This code does not generate errors, but doesn't add properties to
@MessageDriven annotation.
Someone can help me?
thanks
Fiorenzo
12 years, 2 months