Why hasn't JCR support been brought into Spring core yet? It's been around for quite some time, yet it remains part of Spring Modules.
Type: Posts; User: rrc7cz; Keyword(s):
Why hasn't JCR support been brought into Spring core yet? It's been around for quite some time, yet it remains part of Spring Modules.
I ran this, but my Entities still use @RooJavaBean, @RooToString, @RooEntity, while my Controllers still have @RooWebScaffold, etc.
How can I get rid of ALL roo dependencies?
I'd like to update this thread with the latest information I have on this topic. In the end, I got AspectJ load-time weaving for @Configurable mostly working. Sometimes, however, it would boot up and...
Hi amin, thanks for the reply. Here's a snippet of one of my domain objects wired up with:
@Entity
@Transactional
@Configurable(dependencyCheck = true)
@NamedQueries( { @NamedQuery(name =...
I've read documentation "6.8.1. Using AspectJ to dependency inject domain objects with Spring"
I've marked my domain classes with @Configurable(dependencyCheck = true), added @Resource annotations...
I have two projects. Both use:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
I have a project written using the inheritance & XML config method for controllers:
public class MyController extends SimpleFormController...
then in my app-servlet.xml I configure the...
Whew, ran out of space there. So it's clear that the error is coming from slf4j, where I have:
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>...
UPDATE: I sorta fixed this... it's weird though, because it requires two changes to SLF4J 1.5.6 -
1) change SINGLETON access modifier from private to public (see below for more details)
2)...
Hey guys, this may apply more to servlet in general than Spring's Web support, but maybe Spring has a nice solution to this.. not sure.
So I have two wars. These wars may be running within the...
Thank you Marten, you are right. The spring-webmvc.jar in our classpath wasn't getting updated with the 2.5.6 version. It now works fine.
Thank you!
I'm actually really surprised I couldn't find this in the forums.. not sure how I'm the only one having this issue.
I upgraded to 2.5.6 recently (I think I was on 2.5.5) and now ...
I have this error:
The type org.hibernate.LockMode cannot be resolved. It is indirectly referenced from required .class files
And yes - I am using Hibernate3, not 2 as many others who had...
Thanks for the reply. I have changed to this:
//CLOB clobValue = CLOB.createTemporary(connection, true, CLOB.DURATION_SESSION);
CLOB clobValue = CLOB.createTemporary(connection, false,...
I have read all of the past posts on CLOBS w/Oracle 10g and SqlLobValue and nothing seems to work. I believe I'm ready to go mad. So, I am using Oracle 10g and Spring 2 JDBC. I have an Oracle STRUCT...
I have what seems to be a simple problem. I have a JSF managed-bean:
<managed-bean>
<managed-bean-name>searchForm</managed-bean-name>
...