You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tiles.apache.org by "Konrad Garus (JIRA)" <ji...@apache.org> on 2009/09/14 17:23:33 UTC

[jira] Created: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Cannot instantiate JspExpressionFactoryFactory
----------------------------------------------

                 Key: TILES-464
                 URL: https://issues.apache.org/struts/browse/TILES-464
             Project: Tiles
          Issue Type: Bug
          Components: tiles-core
    Affects Versions: 2.2.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0
            Reporter: Konrad Garus


There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.

After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Antonio Petrelli updated TILES-464:
-----------------------------------

    Fix Version/s: 2.2.1
                   2.1.4

Patch applied in TILES_2_1_X. Thanks Kondrad!
In the trunk, the JspExpressionFactoryFactory is under the "tiles-el" module, and it can be instantiated with a simple "new".

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>            Assignee: Antonio Petrelli
>             Fix For: 2.1.4, 2.2.1
>
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Antonio Petrelli updated TILES-464:
-----------------------------------

    Assignee: Antonio Petrelli

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>            Assignee: Antonio Petrelli
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Alexander Alyoshin (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46834#action_46834 ] 

Alexander Alyoshin commented on TILES-464:
------------------------------------------

Thanks!
How we planned release of this versions? 2.1.4/2.2.1

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>            Assignee: Antonio Petrelli
>             Fix For: 2.1.4, 2.2.1
>
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Konrad Garus (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46771#action_46771 ] 

Konrad Garus commented on TILES-464:
------------------------------------

In ElAttributeEvaluator, line 103, replaced:

"org.apache.tiles.evaluator.el.JspExpressionFactoryFactory"

with:

"org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory"

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46833#action_46833 ] 

Antonio Petrelli commented on TILES-464:
----------------------------------------

Tiles 2.1.4 and 2.2.1 are (currently) unreleased versions of Tiles, so your option is to build Tiles from source.
http://svn.eu.apache.org/repos/asf/tiles/framework/branches/TILES_2_1_X/
http://svn.eu.apache.org/repos/asf/tiles/framework/trunk/

Anyway I will deploy a snapshot this evening (CET), that will be downloadable from the snapshot repository:
http://people.apache.org/repo/m2-snapshot-repository/org/apache/tiles/tiles-core/

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>            Assignee: Antonio Petrelli
>             Fix For: 2.1.4, 2.2.1
>
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Antonio Petrelli updated TILES-464:
-----------------------------------


No answer, I close it as incomplete.

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Reopened: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Antonio Petrelli reopened TILES-464:
------------------------------------


Sorry, what change did you do?

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46772#action_46772 ] 

Antonio Petrelli commented on TILES-464:
----------------------------------------

Whoops! This is definitely a bug.
I will fix it this evening (CET).

Thanks!

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Antonio Petrelli closed TILES-464.
----------------------------------

    Resolution: Fixed

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>            Assignee: Antonio Petrelli
>             Fix For: 2.1.4, 2.2.1
>
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Alexander Alyoshin (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46836#action_46836 ] 

Alexander Alyoshin commented on TILES-464:
------------------------------------------

okey. thanks.

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>            Assignee: Antonio Petrelli
>             Fix For: 2.1.4, 2.2.1
>
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Konrad Garus (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46769#action_46769 ] 

Konrad Garus commented on TILES-464:
------------------------------------

I did include tiles-jsp-2.2.0.jar and it did not work. After making the described change (it appears to make sense from a brief source code analysis) and rebuilding the project the issue went away.

Sorry for not replying sooner.

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46742#action_46742 ] 

Antonio Petrelli commented on TILES-464:
----------------------------------------

Did you include "tiles-jsp" jar?

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Antonio Petrelli closed TILES-464.
----------------------------------

    Resolution: Incomplete

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46835#action_46835 ] 

Antonio Petrelli commented on TILES-464:
----------------------------------------

Strictly speaking there is no release plan.
However, we have already 4 fixed bugs for Tiles 2.1.4 and, since it should be easy to release it, the release process should start in few days.
Follow the release process in Tiles Users and Developers mailing lists:
http://tiles.apache.org/mail-lists.html

Further questions are better asked there.

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>            Assignee: Antonio Petrelli
>             Fix For: 2.1.4, 2.2.1
>
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TILES-464) Cannot instantiate JspExpressionFactoryFactory

Posted by "Alexander Alyoshin (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/TILES-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46832#action_46832 ] 

Alexander Alyoshin commented on TILES-464:
------------------------------------------

where can download update lib? i don't compile project without this lib.

> Cannot instantiate JspExpressionFactoryFactory
> ----------------------------------------------
>
>                 Key: TILES-464
>                 URL: https://issues.apache.org/struts/browse/TILES-464
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0
>            Reporter: Konrad Garus
>            Assignee: Antonio Petrelli
>             Fix For: 2.1.4, 2.2.1
>
>
> There's a bug in ElAttributeEvaluator. It tries to instantiate org.apache.tiles.evaluator.el.JspExpressionFactoryFactory, while the full class name is org.apache.tiles.jsp.evaluator.el.JspExpressionFactoryFactory.
> After fixing one string in ElAttributeEvaluator it seems to work. The issue is present in 2.1 and 2.2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.