Packing the application with the library
<dependency>
<groupId>org.jboss.ironjacamar</groupId>
<artifactId>ironjacamar-jdbc</artifactId>
<version>1.0.9.Final</version>
</dependency>
and...
Type: Posts; User: settholo; Keyword(s):
Packing the application with the library
<dependency>
<groupId>org.jboss.ironjacamar</groupId>
<artifactId>ironjacamar-jdbc</artifactId>
<version>1.0.9.Final</version>
</dependency>
and...
Hi all,
for some reason using
<jee:jndi-lookup id="dataSource" jndi-name="java:jboss/datasources/sampleDS"/>
started to work. I already tried it, but for some reason now it's working.
In order...
Anyone had the problem of getting the datasource from jndi with the last versions?
I have to go into production with my web application. The application server is JBoss 7.1.1.
So I was looking for moving the datasources from the spring application context to the container.
I...
Any other information?
Sorry, I can't post the configuration, I can tell you that in the mvc-context, the one bound to the servlet in the web.xml, there is the component-scan in the controllers package, the view resolver,...
Hi all, I'm using spring 3.1 and I'm not using the tag <mvc:annotation-driven> but configuring some custom bean for custom behavior in handler mappping.
The point is, spring creates for me the...
Hi Marten, you're right, i didn't import my aop configuration in the mvc context (Servlet) but only in the application context(listener).
Now it does work as expected.
Thank you
Daniel
Hi all, I created a custom annotation for enabling the execution of a certain aspect.
<bean id="profilingAspect" class="com.domosafety.template.aspects.ProfilingAspect" />
<aop:config>
...
Any idea?
Bye
Daniel
Hi Marten, thank you for your reply. Yes, is committing, I'm on mysql 5 with InnoDB tables, tryed with jboss 7 and tomcat 7, here's the log of tomcat:
16:20:36,246 DEBUG SessionImpl:253 -...
Hi all, I use the JpaRepository interface extension for getting crud operations done. I want the transaction to be wrapped around the controller metho, so I annotated the controlle with...