Tagged Questions
0
votes
1answer
19 views
Change data source dynamically on user login
I have a project that has the following requeriments:
Allow users to login in the same Web Application using different schemas following a criteria;
Dynamically route the datasource against a rule - ...
0
votes
1answer
29 views
@OrderBy annotation cannot order by sub relation
If There is a relation like this:
entity A (one) ---> (many) entity B (one)---->(one) entity C
And current JPA entity A has following relation definition:
@OneToMany(mappedBy = "A", fetch = ...
0
votes
0answers
14 views
looking to create pluggable Java Server Faces web application similar to Rails Plugins
I am planning to create an product in that basic functionalities should be an open source version and certain module should be closed source. If product emerges with success then I will create an ...
0
votes
0answers
11 views
Throw TraversableResolver.isReachable() only on one of the three databases, other two are fine
I run the same application on local oracle database and testing db A, no problem when persisting a series of entities, but when comes to db B, when try to persist one of the entities, the server gives ...
0
votes
0answers
33 views
Spring's Transaction manager not committing trancsactions intermittently
I am using spring 3.0.5 + hibernate with declarative transaction management in one of our components and everything seems to be working fine. But intermittently it so happens that one of the ...
0
votes
2answers
33 views
Does it worth to put entity under @Transactional service layer if just for searching?
In Spring MVC, I put most JPA entity (from domain layer) manipulation under service layer and for most CRUD actions, I have to make that service method or class @Transactional.
But, just thinking, ...
1
vote
0answers
31 views
Spring Autowired Exception when a remote ejb is down
Hi,
I have a simple question that I am not able to solve.
I'm using Spring 3 to lookup Remote ejbs and I added lazy-init=true into bean definition because my application must starting
also if some ...
0
votes
2answers
56 views
Does a new transaction detach all previous entities?
Let's say we have the following piece of code:
@Entity
public class User {
@Id
private String name;
@OneToOne(cascade = CascadeType.ALL)
private Address address;
//getters and ...
0
votes
1answer
54 views
EntityManager from container in SpringBeanAutowiringInterceptor-created context
I have an EJB that's annotated as follows:
@Stateless
@Interceptors(SpringBeanAutowiringInterceptor.class)
The SpringBeanAutowiringInterceptor creates a ClassPathXmlApplicationContext which in turn ...
0
votes
1answer
41 views
Merge method doesn't make LAZY fetch mapping available
Here is a simple One-to-Many relationship: Order to Items. One order can have many items within. And there is an association table ORDERITEMSMAPPING between the two entities, following relation is ...
0
votes
0answers
77 views
tomcat and spring cant lookup for an ejb in glassfish server
I have a problem with Tomcat and Spring looking up for an ejb in a Glasfish server
here is the ejb-services.xml loaded:
...
<jee:jndi-lookup id="inscriptionService"
...
2
votes
1answer
105 views
When to use Spring @Transactional (propagation = Propagation.SUPPORTS)?
According to the Spring javadoc @Transactional(propagation = Propagation.SUPPORTS)
Support a current transaction, execute non-transactionally if none
exists. Analogous to EJB transaction ...
0
votes
0answers
71 views
Spring: parent declaration for jee:remote-slsb
I'm using spring 3.1.2. I have many jee:remote-slsb declarations with common parameters. I'd like to create parent declaration for them. I've tried:
<jee:remote-slsb abstract="true" ...
0
votes
0answers
37 views
spring in weblogc ejb application
We have an existing WebLogic EJB application which has only weblogic-ejb-jar.xml and doesn't have any web.xml.
I have too include spring bean in the EJB. So I created a applicationContext.xml and put ...
0
votes
1answer
188 views
JNDI/Tomcat no appropriate service handler found even the application still working
I have a Spring application running on vFabric tc server which extended from Tomcat 7. Current application has about three data sources need to change to JNDI. I have put the connection pool in to ...
0
votes
1answer
89 views
Are Facades in EJB the same thing as service in a spring-based web application
I've participated in several projects of Spring-based web-application - and have written a quantity myself. Usually we have (roughly speaking) following folders to divide our classes by categories ...
3
votes
1answer
156 views
Spring @Async or EJB @Asynchronous for asynchronous service invocation ?
I am working on a project using Hibernate JPA and Spring MVC, I am looking into implementing an asynchronous service, and I realized that I am getting the two annotations @Async or @Asynchronous from ...
0
votes
0answers
38 views
spring in ejb listener
I have an EJB application which doesn't have any web.xml in the application.
In the application, weblogic application listener class we need to get the spring context.
For example,
In the ...
0
votes
1answer
325 views
Get Unable to obtain an object lock on “null”.; org.apache.openjpa.persistence.OptimisticLockException:
This is a Spring application with Roo and the exception thrown by a simple finder function like:
TransactionRate.findAllTransactionRate(TransactionRate.java:1)
The exception only happens to ...
0
votes
1answer
29 views
While publishing the application into the Websphere application server it has to load all tables from database using spring
In our project there is requirement to load all tables from database While publishing the application into the Websphere application server.
I just defined the applicationContext in classpath..
...
0
votes
0answers
66 views
JPA(OpenJPA) is very slow when searching on multiple data sources
We have an Spring application running on OpenJPA/Oracle. It has three persistenceUnit to take care of, but all three are on the same oracle instance so every unit has transaction-type as ...
0
votes
5answers
210 views
Should I or could I use Spring within EJB's [closed]
I am working in a firm that is new to java and I am the only java programmer and I need to write about 10 systems within a few months.. The firm has 2 other programmers that know basic java. Not ...
0
votes
2answers
82 views
Distributed Computing with Java and Spring should I use Messaging, Web Services or EJB?
I am working in a firm that is new to java and I am the only java programmer and I need to write about 10 systems within a few months.. The firm has 2 other programmers that know basic java. Not ...
0
votes
0answers
114 views
EJB 3.x or Spring: for Jersey-JPA-hibernate REST service [closed]
Which is easier when it comes to Jersey-JPA-hibernate applications: Spring or EJB 3.x? You can answer for both experienced users and for inexperienced users of Java. Basically, if time is at a ...
1
vote
1answer
421 views
Injecting @EJB into a Spring Bean in JBoss
We have a Spring managed bean with an @EJB field
import org.springframework.security.web.authentication.logout.LogoutHandler;
public class MyLogoutHandler extends LogoutHandler {
...
1
vote
1answer
97 views
Is it possible to call a Restful web service from an EJB2 client
I have been looking around for examples of how to call a Restful service written in Spring 3 from an EJB2 client. If i understand REST correctly, it should not matter what technology/language the ...
0
votes
1answer
101 views
Plug Bean to JBoss with JNDI
I wonder how object (if it matter I need EJB) can be plugged to JBoss (5.0) with JNDI?
I have following bean definition in my Spring applicationContext.xml:
<bean id="transactionManager" ...
0
votes
0answers
36 views
Using Spring beans through IIOP protocol
It's possible to use Spring Beans through IIOP protocol (will be deployed on WebSphere)?
I want to create Spring Bean that can be used by other applications in same application server. So easiest ...
1
vote
3answers
220 views
Initialize @EJB fields
I am newbie in EJB.
I have a class with following fields
@Stateless
@TransactionManagement(TransactionManagementType.CONTAINER)
@TransactionAttribute(TransactionAttributeType.REQUIRED)
public class ...
0
votes
0answers
83 views
Silverlight and Java with spring on Tomcat server
I have got the following problem.
My friend wrote java application which gets data from database and shares it using SOAP webservice. I have got test environment running on tomcat server.
Web service ...
0
votes
0answers
94 views
SmartGWT and best back-end solution
In team, we want to prepare application and we need some answers to go for it.
Here is a background:
Using InteliJ IDE we want to divide the application into few maven projects in wich one of them ...
0
votes
2answers
825 views
Extracting whole SOAP message with JAX-WS
I have an EJB stateless bean web service and would like to get access to the whole SOAP message, not just the SOAP Body as I'm currently getting in the parameter. I want to submit the message to a ...
5
votes
2answers
1k views
Spring <jee:remote-slsb> and JBoss AS7 - No EJB receiver available for handling
I have got @Remote EJB on JBoss AS 7, available by name java:global/RandomEjb/DefaultRemoteRandom!pl.lechglowiak.ejbTest.RemoteRandom.
Standalone client is Spring application that uses ...
0
votes
0answers
63 views
Java: Test transaction demarcation
In the scope of moving away from WebSphere to something more lightweight I need to replace EJB managed transactions with spring declarative tx.
RemoteEJB.doSomeWork -- remote call --> EJB --> ...
2
votes
2answers
265 views
JPA entity mapping from different persistent unit
Is there any specific configuration to put an entity from different persistence Unit into a current mapping?
For example:
@RooJpaActiveRecord(persistenceUnit = "persistenceUnit_central")
public ...
1
vote
1answer
127 views
JPA2 — how to auto remove one direction many-to-one mapping data on `many` side?
First CascadeType.Remove is not an option because the client side database may not support cascade operation.
I guess OrphanRemoval = true only handle @OneToXXX relationships.
How about many-to-one ...
0
votes
2answers
128 views
Spring-Hibernate Application Integration with EJB-Hibernate Application?
I have a EJB-Hibernate application, and currently I am trying to integrate another application which is built in Spring-Hibernate.
Now the issue is, as both of them are using Hibernate, I am confused ...
1
vote
0answers
77 views
transferring Principal from EJBContext to Spring SecurityContext
I'm using springsecurity to protect some EJB methods deployed on jBoss 5.1.0.
I'm looking for a nice way to transfer the java.security.Principal retrieved from the EJBContext, by calling ...
0
votes
0answers
238 views
How do I troubleshoot java.lang.ClassCastException when looking up EJB in JUnit test?
I'm using JUnit 4.8.1, Spring 3.1.0.RELEASE, and mock-ejb 0.6-beta2 for mocking an EJB container in a JUnit test (I'm open to using another EJB mock framework). In my JUnit test, I'm storing EJBs to ...
0
votes
0answers
205 views
using ejb service in a spring bean
I have an ejb project with several services deployed on the server.
MyServiceLocal extends javax.ejb.EJBLocalObject
MyServiceLocalHome extends javax.ejb.EJBLocalHome
MyServiceBean implements ...
2
votes
3answers
5k views
Java Web Application Tutorial for complete beginner [closed]
I'm a professional accountant who takes interest in all things IT.
I learned VB .NET and SQL Server on my own using books and online resources.
Moving on, I now want to learn Web application ...
0
votes
1answer
235 views
Java: MDB and Spring's SingletonBeanFactoryLocator
In a code base that I've inherited, there's an MDB which is calling SingletonBeanFactoryLocator().getIntance().useBean() to get a factory reference in its ejbCreate(), and then getting a specific bean ...
0
votes
0answers
129 views
How can I mock EJBs in a JUnit test using the ejb-jar.xml file descriptors?
I'm using JUnit 4.8.1 and Spring 3.1.0.RELEASE. I have found the org.mockejb framework for mocking an EJB container, deploying EJBs, and binding those to JNDI names. Everything works great, but what ...
1
vote
0answers
122 views
EJB,Hibernate and spring transaction
I've a question regarding the use of the transaction manager in a context with EJB, Spring and Hibernate.
In our project we have an EJB stateless marked with the annotation ...
0
votes
1answer
267 views
Intermittent failures accessing clustered remote EJB via Spring
I have a Spring application which uses a remote stateless EJB hosted in WebLogic.
<jee:remote-slsb id="itemService"
jndi-name="org.example.ItemService"
...
1
vote
1answer
316 views
Change EJB project to web app
I've created a Java EE project in Eclipse. But now I've decided to use Spring instead, so I want it to be a simpler dynamic web application. I think that means I must remove the "EJB Module" project ...
0
votes
2answers
351 views
How to inject Spring dependencies into Message Driven EJB?
Is there a way how to inject Spring dependencies into Message Driven EJB?
The bean:
@MessageDriven( ......)
public class MessageBean implements MessageListener {
@Autowired private ...
0
votes
1answer
137 views
Spring beans (business layer) in separate module
I'm starting new application. I would like to have all business logic and domain classes separeted in standalone module (something like remote EJB). This is because of the app will have at least two ...
1
vote
2answers
1k views
JSF + JPA without EJB or Spring? [closed]
I need to make simple CRUD web app (i'll get paid for it), but i don't have any experience in java web development, so i have a few questions just to get going.
As far as i understand there's 2 ways ...
1
vote
3answers
571 views
Migrating CDI/EJB annotations to Spring annotations
I'm trying to replace my CDI/EJB annotations with Spring ones. But I'm struggeling how to do it right.
This is what I have in CDI/EJB:
@Stateless
...



