Search:

Type: Posts; User: rrc7cz; Keyword(s):

Search: Search took 0.01 seconds.

  1. Why is JCR support still in Spring Modules instead of core?

    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.
  2. Thread: Roo dependency

    by rrc7cz
    Replies
    7
    Views
    2,086

    I ran this, but my Entities still use...

    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?
  3. Replies
    3
    Views
    1,303

    I'd like to update this thread with the latest...

    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...
  4. Replies
    3
    Views
    1,303

    Hi amin, thanks for the reply. Here's a snippet...

    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 =...
  5. Replies
    3
    Views
    1,303

    How to troubleshoot @Configurable

    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...
  6. What causes "Invalid NamespaceHandler class [TxNamespaceHandler]"?

    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" ...
  7. Can't apply security interceptors when using Controller annotations?

    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...
  8. Whew, ran out of space there. So it's clear that...

    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>...
  9. Can't get JPA w/Hibernate on Spring 2.5 configured

    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)...
  10. Replies
    2
    Views
    2,310

    Share session between wars?

    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...
  11. Replies
    5
    Views
    1,735

    <?xml version="1.0"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
    ...
  12. Thank you Marten, you are right. 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!
  13. Upgrade to 2.5.6 problem with initBinder & ServletRequestDataBinder

    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 ...
  14. Replies
    5
    Views
    1,735

    LockMode cannot be resolved, using Hibernate3

    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...
  15. Thanks for the reply. I have changed to this: ...

    Thanks for the reply. I have changed to this:


    //CLOB clobValue = CLOB.createTemporary(connection, true, CLOB.DURATION_SESSION);
    CLOB clobValue = CLOB.createTemporary(connection, false,...
  16. CLOB in STRUCT, SqlLobValue, StoredProc problems

    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...
  17. Replies
    0
    Views
    667

    JSF/ Spring managed-proptery issue

    I have what seems to be a simple problem. I have a JSF managed-bean:

    <managed-bean>
    <managed-bean-name>searchForm</managed-bean-name>
    ...
Results 1 to 17 of 17