I also have several Spring configuration files in my project and seem to having an issue with import. The problem I seem to be having is that if a configuration file is used in two other different...
Type: Posts; User: khaskett; Keyword(s):
I also have several Spring configuration files in my project and seem to having an issue with import. The problem I seem to be having is that if a configuration file is used in two other different...
I have this figured out... Previously the next page was in the same context, now it is not, so we have to complete the full URL in the forward, which then forces it to be a redirect and not a forward...
In the process of switching over our Struts 1.2.9 app to use the org.springframework.web.struts.DelegatingActionProxy. Previously our forwards were getting sent through as a POST and now it seems it...
I have a Manager class setup to handle creating an entity. Initially I had the @Transactional(readOnly = true) annotation at the class definition. This was working for a while until we ran into a...
Here is the code that I am using -
@Repository
public class CpAgentInfoManagerImpl implements CpAgentInfoManager {
@PersistenceContext(unitName="cpsjpa")
private EntityManager em;
...
What would be the correct way to setup the applicationContext.xml in an enterprise app with several Web Applications?
Specifically if a Web app has another Web App in its module dependencies, does...
My apologies... I had changed the name in the persistence.xml when I moved it to the Utility jar, and it did not match what I had specified in the applicationContext.xml file.
Kevin
My current configuration is Websphere 6.1 with EJB3 Feature Pack, Spring 2.5.6, EclipseLink 1.0.2
My EAR file has the JPA files in a utility jar file that the Web applications will be using....