Results 1 to 3 of 3

Thread: JSF-Spring 2.6 incompatible with current CVS head

Hybrid View

  1. #1
    Join Date
    Sep 2004
    Posts
    13

    Default JSF-Spring 2.6 incompatible with current CVS head

    Hi,

    I've just freshed my local Spring source and find that JSF-Spring won't compile. The problems are in the FacesSpringVariableResolver:

    1. the transformedBeanName method of the super class has been turned to private, thus not accessible the the subclass.
    2. isFactoryDereference has seemed to be factored out to the BeanFactoryUtils. (This is trivial to fix though)

    I'm wondering if the future version of the AbstractBeanFactory.transformedBeanName can still keep its protected signature.

    Any ideas?

    Thanks!

    Bing Ran

  2. #2
    Join Date
    Sep 2004
    Posts
    13

    Default

    to follow up,

    I also had to modify the getPropertyValue method in the FacesConfigXmlBeanDefinitionParser class in the JSF-Spring package to make them work together:

    Here is the change I needed to make:

    from:

    return new RuntimeBeanReference(value);

    to:

    return new RuntimeBeanReference(value.substring(2, value.indexOf("}")));

  3. #3
    Join Date
    Aug 2004
    Location
    Toronto, Canada
    Posts
    736

    Default

    I've added a JIRA issue:

    http://opensource.atlassian.com/proj...browse/SPR-406

    Please use Jira for this sort of thing in the future.

    Thanks,
    Colin Sampaleanu
    SpringSource - http://www.springsource.com

Similar Threads

  1. Spring MVC Web Framework versus Struts
    By biguniverse in forum Web Flow
    Replies: 27
    Last Post: Aug 29th, 2012, 03:57 AM
  2. Replies: 5
    Last Post: Aug 9th, 2008, 05:30 AM
  3. A Spring Class Loader?
    By azzoti in forum Architecture
    Replies: 8
    Last Post: May 7th, 2005, 04:02 AM
  4. Replies: 14
    Last Post: Feb 21st, 2005, 05:41 PM
  5. trying to wrap my head around spring.
    By jpwillms in forum Container
    Replies: 3
    Last Post: Dec 18th, 2004, 12:40 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •