[JBoss JIRA] Created: (SEAMSOCIAL-16) Follow Seam 3 example naming scheme
by Jozef Hartinger (JIRA)
Follow Seam 3 example naming scheme
-----------------------------------
Key: SEAMSOCIAL-16
URL: https://issues.jboss.org/browse/SEAMSOCIAL-16
Project: Seam Social
Issue Type: Task
Affects Versions: 3.0.0.Alpha1
Reporter: Jozef Hartinger
Assignee: Antoine Sabot-Durand
Priority: Minor
Please, follow these naming constraints for the sample application to be consistent with other Seam 3 demos.
{noformat}
folder name: {example}
artifact id: seam-{module}-example-{example}
context path: {module}-{example}
package: org.jboss.seam.{module}.examples.{example}
{noformat}
* use dashes as delimiters
* if the example name uses dashes ( - ), these are removed in the package name
The only violation I can see is the package name (example instead of examples).
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 6 months
[JBoss JIRA] Created: (SEAMFACES-127) faces-shortly - missing slf4j impl on GlassFish
by Jozef Hartinger (JIRA)
faces-shortly - missing slf4j impl on GlassFish
-----------------------------------------------
Key: SEAMFACES-127
URL: https://issues.jboss.org/browse/SEAMFACES-127
Project: Seam Faces
Issue Type: Bug
Affects Versions: 3.0.0.Final
Reporter: Jozef Hartinger
Due to changes in transitive dependencies, slf4j implementation is no longer pulled in. As a result the applications fails to deploy, as this jar is required by hibernate.
We could either:
a) declare an explicit dependency for an slf4j implementation
b) do not use hibernate in the glassfish deployment - instead, provide a persistence configuration for GlassFish's builtin database - this is *much* cleaner solution since it does not required libraries that provide functionality alternative to the application server to be bundled with the application, plus it is alligned with how other other seam examples work.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 6 months
[JBoss JIRA] Created: (SEAMFACES-172) Follow Seam 3 example naming scheme
by Jozef Hartinger (JIRA)
Follow Seam 3 example naming scheme
-----------------------------------
Key: SEAMFACES-172
URL: https://issues.jboss.org/browse/SEAMFACES-172
Project: Seam Faces
Issue Type: Task
Components: Build & Distribution
Affects Versions: 3.0.1
Reporter: Jozef Hartinger
Priority: Minor
Please, follow these naming constraints for the sample application to be consistent with other Seam 3 demos.
{noformat}
folder name: {example}
artifact id: seam-{module}-example-{example}
context path: {module}-{example}
package: org.jboss.seam.{module}.examples.{example}
{noformat}
* use dashes as delimiters
* if the example name uses dashes ( - ), these are removed in the package name
Currently, the folder name and package name are incorrect.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 7 months
[JBoss JIRA] Created: (SOLDER-110) @DefaultBean does not work on generic types
by George Gastaldi (JIRA)
@DefaultBean does not work on generic types
-------------------------------------------
Key: SOLDER-110
URL: https://issues.jboss.org/browse/SOLDER-110
Project: Seam Solder
Issue Type: Bug
Affects Versions: 3.0.0.Final
Reporter: George Gastaldi
DefaultBean should work on generic types also, check the example below:
{code:java}
public interface Converter<S, T> {
T convert(S source);
}
@DefaultBean(Converter.class)
public class DozerConverter implements Converter<Object, Object> {
@Inject
public DozerConverter(InjectionPoint ip) {
}
@Override
public Object convert(Object source) {
}
}
public class ConverterTest {
@Inject
private Converter<String, Integer> converter;
...
}
{code}
When running the test, it fails with a org.jboss.weld.exceptions.DeploymentException: WELD-001408 Unsatisfied dependencies for type [Converter<String, Integer>] with qualifiers [@Default] at injection point [[field] @Inject private org.jboss.seam.solder.test.converter.ConverterTest.converter], since the generic types are different (but possible, since the default bean it´s supposed to handle object to object conversion).
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 7 months