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
0
votes
1 answer

WELD Classloading issue after adding deltaspike to an existing primefaces maven project

I am new to primefaces and deltaspike, we initially tried with CDI conversations but had to fall back to deltaspike. I added the jars as mentioned in the https://deltaspike.apache.org/documentation/configure.html#config-maven-indep But I am getting…
Avinash Moram
  • 67
  • 2
  • 13
0
votes
1 answer

Wildfly - deltaspike - transaction not committed?

I am using Wildfly 10 along with Deltaspike and having issues persisting an entity. The problem comes later on when I try to refresh it or persist another entity referring to it. When I try to refresh it, I get the exception indicating the entity…
Walter
  • 1,290
  • 2
  • 21
  • 46
0
votes
1 answer

DeltaSpike @Transactional is not called

Well, i'm trying to use @Transactional by DeltaSpike but TransactionalInterceptor is never called. This is my EntityManagerProducer: public class EntityManagerProducer implements Serializable { private static final long serialVersionUID =…
Ronaldo Lanhellas
  • 2,975
  • 5
  • 46
  • 92
0
votes
1 answer

DeltaSpike Data And JTA doesn't work

I have a problem "no transaction is in progress" for container-based datasource in Wildfly 10.1. There are my settings:
ZaptoS
  • 141
  • 1
  • 1
  • 9
0
votes
1 answer

Using EntityManager already created with @Transactional DeltaSpike

I'm trying to use @Transactional by DeltaSpike library, but i have some problems with it. Let's see: 1) I have a DAO producer that creates a EntityManager using a custom qualifier. @Produces @PersistenceUnitName(value="") public DAO…
Ronaldo Lanhellas
  • 2,975
  • 5
  • 46
  • 92
0
votes
1 answer

Deltaspike i18n encoding error

I'm using Deltaspike Core for retrieving and showing messages in different languages. I'm using the default MessageContext implementation but with a custom MessageResolver. It worked fine until I tried to use a properties' file codified as…
Luis
  • 31
  • 4
0
votes
1 answer

Deltaspike + Quartz + CronExpressions from custom property file

I've achieved configuring CronExpression from a propery file, but this property file is apache-deltaspike.properties, which is inside the .jar file. I need to take the cron expression from my custom config file: import…
McCoy
  • 780
  • 1
  • 10
  • 21
0
votes
1 answer

Integrating Apache deltaSpike scheduler Module

While i was creating a scheduler i found it impossible to use the CDI injection in it, after some research i found an interesting solution by using the scheduler module of the API deltaSpike. I followed all the steps described in the official…
0
votes
0 answers

Rollback JUnit Tests in Deltaspike

I am using Apache Deltaspike with OpenWebBeans for CDI in a Java SE project. I've used Spring Data JPA in a Java EE project and it was easy enough to setup unit tests that didn't commit data to the database by adding the @Transactional annotation…
David Yee
  • 3,515
  • 25
  • 45
0
votes
0 answers

Handling new tabs with @WindowScoped beans

I have a CDI application using Deltaspike which uses the incredibly useful @WindowScoped annotation to support multiple tabs. The scenario of the application is as follows: User selects an item from a list and clicks 'Edit'. The user authenticates…
StuPointerException
  • 7,117
  • 5
  • 29
  • 54
0
votes
1 answer

Replacement for Seam 2 logger (or Seam3 Solder logger)

I am moving on from Seam 2 to Java EE7 with CDI and some Apache Deltaspike extensions (using WildFly). One thing that I am missing is a good logger that can format the message (e.g. like the String.format or MessageFormat). I have seen that Seam 3…
Ben
  • 1,922
  • 3
  • 23
  • 37
0
votes
0 answers

Performance problems using a Spring Batch FieldSetMapper to map into an object that will be written with a JpaItemWriter?

We are writing a set of Spring Batch jobs that read values from text files and use that information to update objects that are read and written from the database using JPA. These jobs are not run in a web container, but on an application server. My…
cneff
  • 388
  • 6
  • 15
0
votes
1 answer

REST-like URL rewriting with natural conversation concept

There used to be a concept of natural conversation in seam. basically the conversation id could be custom, ie. someAction:100, and this could be associated with a restlike url for a conversation. hence the url would be something…
Ikthiander
  • 3,917
  • 8
  • 37
  • 54
0
votes
1 answer

Ways to reduce the overhead of multiple configuration and Persistence Contexts to use similar operations on all databases under a single structure?

So I was wondering how following problem would be solved best in a JPA/JavaEE enviroment: Imagine you have multiple stores, each equipped with a separate database (but the same domain structure). Every night all databases are going to be…
calaedo
  • 313
  • 1
  • 3
  • 15
0
votes
1 answer

Split CDI bean in windowscope for separation of concerns

I have a JSF application with RichFaces 4.5.8, deltaspike for CDI beans, and EJBs which runs in an EAP 6.3. I have a page with two tables and several popupPanels. The page is backed by a CDI bean controller in WindowScope. By now the page becomes…
dako-ak
  • 13
  • 4
1 2 3
8 9