You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "ag (JIRA)" <ji...@apache.org> on 2011/08/29 01:21:37 UTC

[jira] [Created] (TAP5-1622) ServiceOverride does not work on GAEJ 1.5.3

ServiceOverride does not work on GAEJ 1.5.3
-------------------------------------------

                 Key: TAP5-1622
                 URL: https://issues.apache.org/jira/browse/TAP5-1622
             Project: Tapestry 5
          Issue Type: Bug
            Reporter: ag
            Priority: Critical


Service override codes - 

@Contribute(ServiceOverride.class) 
public static void setupApplicationServiceOverrides(MappedConfiguration<Class,Object> configuration) { 
System.out.println("AppModule setupApplicationServiceOverrides() ..."); 
        configuration.add(PeriodicExecutor.class, new PeriodicExecutor() { 
            public PeriodicJob addJob(Schedule schedule, String name, Runnable job) { 
        	 System.out.println("AppModule createNOOPPeriodicExecutor() returning null."); 
                return null; 
            } 
        }); 
    } 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (TAP5-1622) ServiceOverride does not work on GAEJ 1.5.3

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1622?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13092801#comment-13092801 ] 

Howard M. Lewis Ship commented on TAP5-1622:
--------------------------------------------

Please enable logging to see what modules are loaded. The most likely situation is that the module containing this snippet is not being loaded.

> ServiceOverride does not work on GAEJ 1.5.3
> -------------------------------------------
>
>                 Key: TAP5-1622
>                 URL: https://issues.apache.org/jira/browse/TAP5-1622
>             Project: Tapestry 5
>          Issue Type: Bug
>            Reporter: ag
>            Priority: Critical
>
> Service override codes - 
> @Contribute(ServiceOverride.class) 
> public static void setupApplicationServiceOverrides(MappedConfiguration<Class,Object> configuration) { 
> System.out.println("AppModule setupApplicationServiceOverrides() ..."); 
>         configuration.add(PeriodicExecutor.class, new PeriodicExecutor() { 
>             public PeriodicJob addJob(Schedule schedule, String name, Runnable job) { 
>         	 System.out.println("AppModule createNOOPPeriodicExecutor() returning null."); 
>                 return null; 
>             } 
>         }); 
>     } 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (TAP5-1622) ServiceOverride does not work on GAEJ 1.5.3

Posted by "ag (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1622?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13093381#comment-13093381 ] 

ag commented on TAP5-1622:
--------------------------

What kind of log? Can you provide the settings? Thanks.

> ServiceOverride does not work on GAEJ 1.5.3
> -------------------------------------------
>
>                 Key: TAP5-1622
>                 URL: https://issues.apache.org/jira/browse/TAP5-1622
>             Project: Tapestry 5
>          Issue Type: Bug
>            Reporter: ag
>            Priority: Critical
>
> Service override codes - 
> @Contribute(ServiceOverride.class) 
> public static void setupApplicationServiceOverrides(MappedConfiguration<Class,Object> configuration) { 
> System.out.println("AppModule setupApplicationServiceOverrides() ..."); 
>         configuration.add(PeriodicExecutor.class, new PeriodicExecutor() { 
>             public PeriodicJob addJob(Schedule schedule, String name, Runnable job) { 
>         	 System.out.println("AppModule createNOOPPeriodicExecutor() returning null."); 
>                 return null; 
>             } 
>         }); 
>     } 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (TAP5-1622) ServiceOverride does not work on GAEJ 1.5.3

Posted by "ag (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1622?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13093381#comment-13093381 ] 

ag commented on TAP5-1622:
--------------------------

What kind of log? Can you provide the settings? Thanks.

> ServiceOverride does not work on GAEJ 1.5.3
> -------------------------------------------
>
>                 Key: TAP5-1622
>                 URL: https://issues.apache.org/jira/browse/TAP5-1622
>             Project: Tapestry 5
>          Issue Type: Bug
>            Reporter: ag
>            Priority: Critical
>
> Service override codes - 
> @Contribute(ServiceOverride.class) 
> public static void setupApplicationServiceOverrides(MappedConfiguration<Class,Object> configuration) { 
> System.out.println("AppModule setupApplicationServiceOverrides() ..."); 
>         configuration.add(PeriodicExecutor.class, new PeriodicExecutor() { 
>             public PeriodicJob addJob(Schedule schedule, String name, Runnable job) { 
>         	 System.out.println("AppModule createNOOPPeriodicExecutor() returning null."); 
>                 return null; 
>             } 
>         }); 
>     } 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (TAP5-1622) ServiceOverride does not work on GAEJ 1.5.3

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship resolved TAP5-1622.
----------------------------------------

    Resolution: Cannot Reproduce

Not saying it doesn't exist, but please reopen when you have more data. There's no reason I'm aware of why this aspect of Tapestry should behave any differently inside Google App Engine.

> ServiceOverride does not work on GAEJ 1.5.3
> -------------------------------------------
>
>                 Key: TAP5-1622
>                 URL: https://issues.apache.org/jira/browse/TAP5-1622
>             Project: Tapestry 5
>          Issue Type: Bug
>            Reporter: ag
>            Priority: Critical
>
> Service override codes - 
> @Contribute(ServiceOverride.class) 
> public static void setupApplicationServiceOverrides(MappedConfiguration<Class,Object> configuration) { 
> System.out.println("AppModule setupApplicationServiceOverrides() ..."); 
>         configuration.add(PeriodicExecutor.class, new PeriodicExecutor() { 
>             public PeriodicJob addJob(Schedule schedule, String name, Runnable job) { 
>         	 System.out.println("AppModule createNOOPPeriodicExecutor() returning null."); 
>                 return null; 
>             } 
>         }); 
>     } 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (TAP5-1622) ServiceOverride does not work on GAEJ 1.5.3

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship resolved TAP5-1622.
----------------------------------------

    Resolution: Cannot Reproduce

Not saying it doesn't exist, but please reopen when you have more data. There's no reason I'm aware of why this aspect of Tapestry should behave any differently inside Google App Engine.

> ServiceOverride does not work on GAEJ 1.5.3
> -------------------------------------------
>
>                 Key: TAP5-1622
>                 URL: https://issues.apache.org/jira/browse/TAP5-1622
>             Project: Tapestry 5
>          Issue Type: Bug
>            Reporter: ag
>            Priority: Critical
>
> Service override codes - 
> @Contribute(ServiceOverride.class) 
> public static void setupApplicationServiceOverrides(MappedConfiguration<Class,Object> configuration) { 
> System.out.println("AppModule setupApplicationServiceOverrides() ..."); 
>         configuration.add(PeriodicExecutor.class, new PeriodicExecutor() { 
>             public PeriodicJob addJob(Schedule schedule, String name, Runnable job) { 
>         	 System.out.println("AppModule createNOOPPeriodicExecutor() returning null."); 
>                 return null; 
>             } 
>         }); 
>     } 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (TAP5-1622) ServiceOverride does not work on GAEJ 1.5.3

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1622?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13092801#comment-13092801 ] 

Howard M. Lewis Ship commented on TAP5-1622:
--------------------------------------------

Please enable logging to see what modules are loaded. The most likely situation is that the module containing this snippet is not being loaded.

> ServiceOverride does not work on GAEJ 1.5.3
> -------------------------------------------
>
>                 Key: TAP5-1622
>                 URL: https://issues.apache.org/jira/browse/TAP5-1622
>             Project: Tapestry 5
>          Issue Type: Bug
>            Reporter: ag
>            Priority: Critical
>
> Service override codes - 
> @Contribute(ServiceOverride.class) 
> public static void setupApplicationServiceOverrides(MappedConfiguration<Class,Object> configuration) { 
> System.out.println("AppModule setupApplicationServiceOverrides() ..."); 
>         configuration.add(PeriodicExecutor.class, new PeriodicExecutor() { 
>             public PeriodicJob addJob(Schedule schedule, String name, Runnable job) { 
>         	 System.out.println("AppModule createNOOPPeriodicExecutor() returning null."); 
>                 return null; 
>             } 
>         }); 
>     } 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (TAP5-1622) ServiceOverride does not work on GAEJ 1.5.3

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1622?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13113517#comment-13113517 ] 

Howard M. Lewis Ship commented on TAP5-1622:
--------------------------------------------

Tapestry logs at INFO level all the module classes it loads at startup.

> ServiceOverride does not work on GAEJ 1.5.3
> -------------------------------------------
>
>                 Key: TAP5-1622
>                 URL: https://issues.apache.org/jira/browse/TAP5-1622
>             Project: Tapestry 5
>          Issue Type: Bug
>            Reporter: ag
>            Priority: Critical
>
> Service override codes - 
> @Contribute(ServiceOverride.class) 
> public static void setupApplicationServiceOverrides(MappedConfiguration<Class,Object> configuration) { 
> System.out.println("AppModule setupApplicationServiceOverrides() ..."); 
>         configuration.add(PeriodicExecutor.class, new PeriodicExecutor() { 
>             public PeriodicJob addJob(Schedule schedule, String name, Runnable job) { 
>         	 System.out.println("AppModule createNOOPPeriodicExecutor() returning null."); 
>                 return null; 
>             } 
>         }); 
>     } 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (TAP5-1622) ServiceOverride does not work on GAEJ 1.5.3

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1622?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13113517#comment-13113517 ] 

Howard M. Lewis Ship commented on TAP5-1622:
--------------------------------------------

Tapestry logs at INFO level all the module classes it loads at startup.

> ServiceOverride does not work on GAEJ 1.5.3
> -------------------------------------------
>
>                 Key: TAP5-1622
>                 URL: https://issues.apache.org/jira/browse/TAP5-1622
>             Project: Tapestry 5
>          Issue Type: Bug
>            Reporter: ag
>            Priority: Critical
>
> Service override codes - 
> @Contribute(ServiceOverride.class) 
> public static void setupApplicationServiceOverrides(MappedConfiguration<Class,Object> configuration) { 
> System.out.println("AppModule setupApplicationServiceOverrides() ..."); 
>         configuration.add(PeriodicExecutor.class, new PeriodicExecutor() { 
>             public PeriodicJob addJob(Schedule schedule, String name, Runnable job) { 
>         	 System.out.println("AppModule createNOOPPeriodicExecutor() returning null."); 
>                 return null; 
>             } 
>         }); 
>     } 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira