Questions tagged [deltaspike]

Apache DeltaSpike (formerly Seam Solder) is a set of CDI extensions meant to ease application development both in and out of Java EE containers.

DeltaSpike (formerly Seam Solder) is designed to run on different implementations of CDI such as Apache OpenWebBeans and JBoss Weld as well as Java Enterprise servers such as Apache TomEE, JBoss AS7, JBoss WildFly 8, Oracle GlassFish, IBM Websphere, Oracle Weblogic Server 12c. There are also extensions to provide support in Apache Tomcat, JBoss Undertow and Jetty.

129 questions
2
votes
2 answers

How to disable loading screen of DeltaSpike

How can I disable the loading screen which appears when using @ViewScoped with DeltaSpike?
Thomas
  • 8,357
  • 15
  • 45
  • 81
1
vote
1 answer

Seam Solder @MessageBundle generating the implementation classes Maven Error

I followed the documentation to use @MessageBundle with Seam Solder 3.1.0 here : http://docs.jboss.org/seam/3/3.1.0.Final/reference/en-US/html/solder-logging.html#typed-message-bundles but a get en error at compile time when Maven try to compile…
DMEx38
  • 156
  • 5
1
vote
1 answer

TomEE throws error "Could not find beans for Type=interface ab.cde.fgh.base.fe.login.LoginService and qualifiers:[]

I looked through the few other questions related to the error but could not find any advice about this. When running a war file in TomEE and triggering a Filter, the following error occurs: org.apache.catalina.core.StandardWrapperValve.invoke…
Stef
  • 13
  • 3
1
vote
1 answer

What is annotation indexing?

In this section of Seam Catch manual it is said that The @HandlesExceptions annotation may be deprecated in favor of annotation indexing done by Seam Solder. However, the Seam Solder manual not even has the "index" word in it - at least as far as I…
brandizzi
  • 26,083
  • 8
  • 103
  • 158
1
vote
2 answers

Wildflt 13 WELD-001304: More than one context active for scope type javax.enterprise.context.SessionScoped

A JEE application I am looking at sometimes - no idea why it happens - goes into this wel exception. WELD-001304: More than one context active for scope type javax.enterprise.context.SessionScoped at…
99Sono
  • 3,554
  • 27
  • 39
1
vote
1 answer

How to Redirect to login page in Keycloak and Apache Deltaspike?

I am working on a Java EE web application that will leverage Keycloak as an identity and authentication provider. Further, I am using Apache DeltaSpike within the project for various purposes. I would like to leverage DeltaSpike's security module…
Shadowman
  • 11,150
  • 19
  • 100
  • 198
1
vote
1 answer

How to prevent loading a full database recursive tree at once?

I'm trying to use the Tree component, in the PrimeFaces library, but due to a large amount of data I have to load it lazily. I followed a tutorial to do it, (http://blog.disy.net/primefaces-lazy-tree/) but it takes 15 seconds to load (instead of 23…
Galabrok
  • 21
  • 7
1
vote
1 answer

Is Deltaspike compatible with Java 9?

According to its doc Deltaspike Data uses ASM: As of DeltaSpike v1.4.0, the Data module internally leverages the Proxy module, which wraps ASM 5. No external dependencies required, and now we have full support for interceptors on partial beans. It…
user140547
  • 7,750
  • 3
  • 28
  • 80
1
vote
1 answer

Deltaspike init failed under JBoss EAP 7

A EAR application is composed with an EJB module + WAR module. Both are depending on Deltaspike (1.8.0) libraries. While deploy the application under JBoss EAP 7.0, the output shows the following exception: Caused by:…
ruddy32
  • 21
  • 7
1
vote
2 answers

JSF 2.2 inject Deltaspike (CDI) windowId into Bean

I'm currently using JSF 2.2 with Deltaspike. We use the Multi-Window-Handling from Deltaspike to handle separate windows. It works great but in a specific case, we need the window ID. I am able to read it…
Sebastian S.
  • 493
  • 1
  • 5
  • 17
1
vote
1 answer

How to use PAX CDI with Declarative service

We are using CXF + DOSGI rest services Interface: @Path("/") public interface DefaultApi{ @POST @Path("/public/login") @Consumes({ "application/json" }) @Produces({ "application/json" }) public Response…
1
vote
0 answers

how to use Order By clause on a embedded class field in apache deltaspike

I am trying to sort record of my employee class on the basis of updatedOn field. UpdatedOn field is in class ChangeInfo which is embedded class of employee class. I am doing this using apache deltaspike. Example : Criteria crtieria =…
1
vote
1 answer

Deltaspike @Transactional is not working

I am working on Seam to CDI migration. For database transaction I am using Deltaspike, Javaee6. I have followed the instruction given in the Deltaspike with JTA document. Deltaspike with JTA persistence.xml
Sudha
  • 220
  • 2
  • 16
1
vote
1 answer

DeltaSpike Test-Control - Persistence Unit Not Found

I am trying to use DeltaSpike Test-Control Module to create integration tests for a new maven application that I am developing It is being deployed on a Wildfly 9 instance A simple test case: @RunWith(CdiTestRunner.class) @TestControl(projectStage =…
Marcos J.C Kichel
  • 6,887
  • 8
  • 38
  • 78
1
vote
1 answer

JPA Query parameters not working

I have a problem with the below JPA query in Apache Deltaspike: @Query("from PersonPositionViewEntity where forename1 like :forename1 and surname like :surname") List search(@QueryParam("forename1") String forename1,…
StuPointerException
  • 7,117
  • 5
  • 29
  • 54
1 2
3
8 9