We need it hosted on Git. (weird fact - laws on encryption prevent us from being able to accept code not publicly hosted) By all means though, I would encourage posting it publicly for the community to review as well.
Ok, no problem. I'll post the URL here when it's up.
Shall I PM you my payment details?
The plugin is now available.
The code and instructions can be found here https://github.com/rhart/spring-insight-jsf-plugin
The sample app and instructions can be found here https://github.com/rhart/spring-insi...culator-webapp
Pre built downloads can be found here https://github.com/rhart/spring-insi...ugin/downloads
And screen shots can be seen here https://github.com/rhart/spring-insi...n-Screen-Shots
Hi Rus,
My name is Shachar and I am a Spring Insight Dev team member
I reviewed your plugin and it's a great start, but there some changes to be made, in order to adhere to Insight standards regarding plugins:
- General issues:
- Insight 1.8.3 was officially released so there is no need to use Insight 1.5.0
- More useful data should be extracted for the different operations - e.g., what value was returned from an action, view name that was rendered, value that was validated...
- FTL template file (for rendering the captured operation in the dashboard) should be provided for each operation type - see examples in other plugins
- Managed/Backing beans:
- Beans declared in faces-config.xml are not captured by this plugin - they should also be monitored by the plugin
- There is no need to capture all public methods, just the action methods
- Validators:
- There is no need to capture all public methods, just validate(FacesContext,UIComponent,Object)
- Validation using backing/managed bean methods is not captured by this plugin
- What value or component was validated? (more useful data...)
- Supply a TraceErrorAnalyzer to capture validation errors
- Lifecycle execute:
- What action was executed?
- What was returned?
- Lifecycle render:
- Which view was resolved?
- Which view was rendered?
- Endpoint
- Label should be more informational (for example: PersonBean#calculateSalary)
- EndpointName (a.k.a. resource key in the code) must be unique for every action executed - e.g. should include at least the method signature
- Listeners(phase listeners, action listeners...)
None is captured by this plugin- Ajax
There is no reference for Ajax calls
Shachar
Hi Shachar,
Thanks for your prompt evaluation. Please see my comments to your suggested changes below:
1. c. we thought that the default template provided sufficient information but can create a template per operation type.
2. a. I don't think this is possible. What pointcut expression could you use to know a bean is declared in faces-config??
2. b. How do you know what method is an 'action' method?? I dont think it's possible to create a pointcut expression to do this. Also, why would someone add a public method to a managed bean if it wasnt JSF related?
3. b. This contradicts 2. b
4. a. I'm not sure what you mean here. The lifecycle execute doesnt call an action, it co-ordinates the calling of the various phases. Maybe this 'grouping' of the phases should be removed?
4. b. Nothing is returned, comment as per 4. a.
5. Will see what can be done here.
Other than the above I can make a start on the changes. I may need to ask for more clarifications as I start making them :-)
Many thanks,
Rus
Hi Rus,
Just had a look at the plugin and as I'm working in a JSF2.x/CDI environment beans annotated with javax.inject.Named or javax.annotation.ManagedBean can also be JSF beans.
Maybe you can rewrite your pointcut from an execute on javax.faces.bean.ManagedBeans to something else. The managed beans are called from an ELResolver (probably) so maybe you can use that to trigger the monitoring (that way it doesn't matter where the managed bean comes from). Just a thought.
Last edited by Marten Deinum; Aug 21st, 2012 at 06:11 AM.
Marten Deinum
Java Consultant / Pragmatist / Open Source Enthousiast / Author
Pro Spring MVC: With Web Flow
Conspect
Have you read the reference guide.
Use the [ code ] tags, young padawan
Hi,
2. a. I believe that both annotated beans and faces-config.xml beans are resolved the same way
2. b. I do not think you can assume anything about the way applications are written. The plugin should capture the relevant data and filter out noise
3. b. and 2. b. complete each other - don't capture all public methods, capture action methods and validation methods
4 and 5 - because of these two issues one can not see how a certain action lead to a certain view (navigation). You are right that nothing is returned from Lifecycle#execute
Feel free to contact me at any time
Shachar