You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org> on 2013/07/25 00:59:49 UTC

[jira] [Assigned] (TAP5-2135) @Cache annotation converts thrown checked exceptions into RuntimeExceptions

     [ https://issues.apache.org/jira/browse/TAP5-2135?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship reassigned TAP5-2135:
------------------------------------------

    Assignee: Howard M. Lewis Ship
    
> @Cache annotation converts thrown checked exceptions into RuntimeExceptions
> ---------------------------------------------------------------------------
>
>                 Key: TAP5-2135
>                 URL: https://issues.apache.org/jira/browse/TAP5-2135
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.7
>            Reporter: Alex Lumpov
>            Assignee: Howard M. Lewis Ship
>         Attachments: vcs-diff3379544559007777335.patch
>
>
> Method with @Cached annotation throws RuntimeExceptions instead of checked exception.
> This behaviour seems to be a wrong.
> See example below
> Source code:
> package com.mycompany.tapestryproject.pages;
> import java.io.IOException;
> import org.apache.tapestry5.annotations.Cached;
> public class SomePage {
> 	private String method1() throws IOException {
> 		throw new IOException();
> 	}
> 	@Cached
> 	private String method2() throws IOException {
> 		throw new IOException();
> 	}
> 	public String getResult1() {
> 		try {
> 			return method1();
> 		} catch (Exception e) {
> 			return e.getClass().getName();
> 		}
> 	}
> 	public String getResult2() {
> 		try {
> 			return method2();
> 		} catch (Exception e) {
> 			return e.getClass().getName();
> 		}
> 	}
> }
> Template:
> <html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_3.xsd">
> 	<body>
> 		<p>Method1 return ${result1}</p>
> 		<p>Method2 return ${result2}</p>
> 	</body>
> </html>
> Output:
> Method1 return java.io.IOException
> Method2 return java.lang.RuntimeException

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira