-
11 Sep 2010 7:47 AM #1
Jprovocateur - Ext J.S by XML configuration - J2EE - SPRING - HIBERNATE
Jprovocateur - Ext J.S by XML configuration - J2EE - SPRING - HIBERNATE
Hello All,
I have developed an open source (LGPLv3) "framework", called Jprovocateur, that allows the rapid development of J2EE applications using Ext J.S .
It combines technologies like Spring Container, Oval Validation, Spring MVC and Ext J.S.
The project is registered in SourceForge (http://sourceforge.net/projects/jprovocateur/)
You can access the documentation site on http://www.jprovocateur.org and the example app on
http://www.jprovocateur.org/samplewe.../listCustomers (guest/guest) .All the examples have been created without writing a single line of javascript.
I consider that the project is in Pre-Alpha state. More documentation, verification of documentation and examples is required.
I created this post in order for you to have a preview and me to get some feedback.
If you like it and you are interested to help, do not hesitate to contact me.
Regards,
Michael
The following features are included
Presentation Layer
- Generation of complicated Ajax Master-Detail Forms/Grids using Ext j.s without writing Javascript, just configure them using xml.
- Generic Controller that will automatically bind posted values to your objects.
- Automatic conversion of your data to JSON/XML and bind to your Ext j.s Forms/Grids.
- Automatic conversion of business errors to JSON/XML and bind to your Ext j.s Forms/Grids.
- Grid state management in the database.
- Automatic PDF Export of Forms.
- Automatic XLS Export of Grids.
- Flow Controller
- Automatic transaction management.
- Validation based on defined Annotations and user defined business rules.
- Access Rights based on Roles.
- Quartz Scheduler.
- Administration Modules for user/roles/access rights/notifications/distribution lists (OPTIONAL).
- Generic DAO to perform list/create/update/delete operations.
- Small and medium size business applications.
- Quick results required. You do not want to waste time configuring everything from scratch
- Well defined steps for the analyst-developer-tester.
- Configure the real views instead of creating Mockups.
- Reduced team resources.
- Reduced expertise in Ext J.S/Hibernate/Spring.
-
14 Oct 2010 10:15 AM #2
Hello Everybody,
The first pre-alpha release is out, you can find instructions http://www.jprovocateur.org/jprovcat...tPrerequisites
The demo application has been updated and sample data added http://www.jprovocateur.org/samplewe.../listCustomers (guest/guest)
Regards,
Michael
-
14 Oct 2010 9:31 PM #3
guest/guest does not work.
Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642
-
14 Oct 2010 10:36 PM #4
-
14 Oct 2010 11:22 PM #5
Looks nice, and I do like the idea of leveraging Java's introspection and annotation capabilities to describe your business object model, and have Ext configurations generated. I think you are on the right track there.
On the client side, there are a few worries.
You seem to be rendering a GridPanel in a row expander.
Then just throwing away that HTML but the GridPanel does not get destroyed and cleaned up.
Go into accounts, expand "Joe", and do
Then open up "Test" and then "Joe".Code:var v = Ext.getCmp("accountListForm"); v.on('destroy', function(){console.log('destroyed');})
There's a whole new grid rendered there, and the old one has not been destroyed. It's still sitting there in memory, referencing its DOM structure which is also still in memory even if not inserted into a parent node.
You need to be very careful when rendering yourself, and not using existing Ext Components which clean up after themselves.Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642
-
14 Oct 2010 11:32 PM #6
In "registerCustomerForm", every line of the form is a column layout Panel which contains a Panel which contains a Field.
I know that when you generate code you sometimes have to code for a general case, and this sometimes means runtime overhead to enable build-time ease of design. But that should be made much more lightweight.
But these are minor things really and can be tidied up. I think your server side configuration and generation is the key strength. Good luck with it!Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642
-
15 Oct 2010 12:21 AM #7
Thank you for your response Animal,
I know there are problems related to the client side, but I cannot solve them all on my own as I am not expert on Ext J.S and javascript. Anybody who wants to help can join the project, just send me an email.
Michael
Similar Threads
-
How can I interage Hibernate and spring into GWT2.0 with Ext-GWT 2.0
By juxj in forum Ext GWT: DiscussionReplies: 2Last Post: 26 Apr 2010, 7:45 AM -
Flexible XML -> GWT for service configuration?
By dblock in forum Community DiscussionReplies: 0Last Post: 28 Feb 2010, 6:03 AM -
RPC-Calls don't work on server configured with Spring / Hibernate
By Udo Gerhards in forum Ext GWT: DiscussionReplies: 1Last Post: 18 Nov 2009, 2:06 AM -
extjs2+tapestry5.11+spring+hibernate(grid,paging.. ....)
By fanzhen.meng@gmail.com in forum Ext 1.x: Help & DiscussionReplies: 2Last Post: 18 Jul 2009, 10:13 AM -
Tree&Grid&form&struts&spring&hibernate
By vxi in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 25 Dec 2007, 10:49 PM


Reply With Quote