XML Configuration of producer fields
by Stuart Douglas
I think that seam-xml needs to ability to programatically add resource (and other) producer fields. My proposed syntax is:
<s:EntityManager>
<s:producerField/>
<s:PersistenceContext unitName="customer" />
<my:CustomerDatasource/>
</s:EntityManager>
which would be equivalent to:
@Produces
@PersistenceContext(unitName="main")
@CustomerDatasource
EntityManager entityManager;
This will also support other types of producer fields, such as weld extension generic bean producer fields and primitives:
<s:String>
<s:producerField/>
<my:ApplicationVersion />
<s:value>3.0.0.GA</s:value>
</s:String>
What does everyone think? I think there is a definite use case for this, but I am not 100% sure about the syntax.
Stuart
14 years, 3 months
sfwk.org server reboot?
by Shane Bryzak
Does anyone know why the sfwk.org server would have been rebooted like
this? The site was down for 3 hours before I noticed.
[jboss@seamframework ~]$ last
jboss pts/0 cpe-58-174-88-11 Tue Aug 24 04:04 still logged in
reboot system boot 2.6.18-028stab07 Tue Aug 24 01:08 (02:56)
jboss pts/0 cpe-58-174-88-11 Wed Aug 11 05:18 - 05:21 (00:02)
jboss pts/0 cpe-58-174-88-11 Mon Aug 9 00:19 - 02:24 (02:04)
jboss pts/0 cpe-58-174-88-11 Thu Aug 5 03:37 - 05:37 (02:00)
jboss pts/0 cpe-58-174-88-11 Wed Aug 4 19:45 - 19:48 (00:02)
jboss pts/1 cpe-58-174-88-11 Wed Aug 4 18:15 - 18:22 (00:07)
jboss pts/0 cpe-58-174-88-11 Wed Aug 4 18:01 - 18:22 (00:21)
14 years, 3 months
Update your module to use the JBoss Maven repository
by Pete Muir
Team,
I have updated the Seam parent POM to use the JBoss repository. Please update your Seam module to use the JBoss repository, by switching to using parent version 3.
You will also want to add this profile to your parent POM. It allows the module build to load stuff from the JBoss repository, including the Seam Parent POM...
<profiles>
<profile>
<id>jboss-public-repository</id>
<activation>
<property>
<name>jboss-public-repository</name>
<value>!false</value>
</property>
</activation>
<repositories>
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Maven Repository Group</name>
<url>http://repository.jboss.org/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Maven Repository Group</name>
<url>http://repository.jboss.org/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
Thanks!
14 years, 3 months
Seam 2.2.1.CR2 is out
by Marek Novotny
Seam 2.2.1.CR2 is available for public.
This second candidate release of version 2.2.1 was aimed to bring
security fixes and also bug fixes found in previous CR1. This release is
important, because it fixes a security issue in parametrized JBoss
Expression Language (EL) expressions - CVE-2010-1871 and Seam team
thanks Meder Kydyraliev of the Google Security Team for responsibly
reporting this issue to JBoss.
Next security fix is in upgrade of Spring dependency from 2.5.6.SEC01 to
2.5.6.SEC02.
Instead of these security issue, we fixed 39 issues including some
performance ones and also bugs with JBoss AS 6 M3/4 or documentation
fixes. More in Release notes are at
https://jira.jboss.org/jira/secure/ReleaseNote.jspa?version=12314471&styl...
Distribution downloads are available at
https://sourceforge.net/projects/jboss/files/JBoss%20Seam/2.2.1.CR2
Documentation for 2.2.1.CR2 is available at
http://www.seamframework.org/Seam2/Documentation (e.g
http://docs.jboss.org/seam/2.2.1.CR2/reference/en-US/html/).
What is missing? Uploading Seam maven artifacts, which is now stucked on
some infrastracture permision issues. I will inform about the
availability of them ASAP. And blogging about the release - I will wait
till maven repository contains seam 2.2.1.CR2 artifacts.
--
Marek Novotny
--
JBoss Seam Product Lead
Red Hat Czech s.r.o.
Purkynova 99
612 45 Brno
Email: mnovotny(a)redhat.com
Office phone: +420 532 294 287, ext. 82-62 087
mobile: +420 608 509 230
14 years, 3 months
Branch 2.2 will be frozen on Wednesday 2010-07-28
by Marek Novotny
All,
I will start to prepare 2.2.1.CR2 release on Wednesday 2010-07-28. I
will sent short notice about it.
After that my notice, 2.2 branch will be frozen until I create the tag
for 2.2.1.CR2.
Thanks for respecting it,
--
Marek Novotny
--
Seam Product Lead
Red Hat Czech s.r.o.
Purkynova 99
612 45 Brno
Email: mnovotny(a)redhat.com
Office phone: +420 532 294 287, ext. 82-62 087
mobile: +420 608 509 230
14 years, 3 months