Re: What is your setup for Rapid Application Development?

2013-04-26 Thread Alexey Mukas
Hi Andrew, For UI we use jquery ui, select2, noty and other js components. Integration is pretty simple in wicket. We don't really need any UI designer or CRUD form generation, we just create html then bind it to the logic. CRUD generation could be added easily if needed. Basic core services as

Re: What is your setup for Rapid Application Development?

2013-04-26 Thread Vit Rozkovec
Hi, in past there was project Wicket Web Beans that we have used, but it is dead now. You could just pass an annotated bean object and form would be created for you. There were also components to list records along with basic CRUD operations. There is also one project - Wicketopia -

Re: What is your setup for Rapid Application Development?

2013-04-26 Thread Martin Grigorov
Hi Andrew, On Fri, Apr 26, 2013 at 7:13 AM, Andrew Schetinin ascheti...@gmail.comwrote: Hi Alexey, RAD requires a set of good visual components (not a strong side of Wicket, unfortunately), and one of the two features - either a visual form editor (10 years ago), or automated CRUD forms

Re: What is your setup for Rapid Application Development?

2013-04-26 Thread Andrew Schetinin
Hi Martin, See inside... On Fri, Apr 26, 2013 at 10:01 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi Andrew, On Fri, Apr 26, 2013 at 7:13 AM, Andrew Schetinin ascheti...@gmail.com wrote: In our case, we had to implement the second option, suitable for our needs Can you explain

Re: What is your setup for Rapid Application Development?

2013-04-26 Thread Dan Simko
Please take a look also on https://github.com/brix-cms/brix-cms/wiki On Fri, Apr 26, 2013 at 9:38 AM, Andrew Schetinin ascheti...@gmail.comwrote: Hi Martin, See inside... On Fri, Apr 26, 2013 at 10:01 AM, Martin Grigorov mgrigo...@apache.org wrote: Hi Andrew, On Fri, Apr 26, 2013

Re: What is your setup for Rapid Application Development?

2013-04-26 Thread Martin Grigorov
Hi Andrew, On Fri, Apr 26, 2013 at 9:38 AM, Andrew Schetinin ascheti...@gmail.comwrote: Hi Martin, See inside... On Fri, Apr 26, 2013 at 10:01 AM, Martin Grigorov mgrigo...@apache.org wrote: Hi Andrew, On Fri, Apr 26, 2013 at 7:13 AM, Andrew Schetinin ascheti...@gmail.com wrote:

Re: What is your setup for Rapid Application Development?

2013-04-26 Thread Andrew Schetinin
Hi Martin, On Fri, Apr 26, 2013 at 11:17 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi Andrew, On Fri, Apr 26, 2013 at 9:38 AM, Andrew Schetinin ascheti...@gmail.com wrote: It is not the maintenance cost the problem. The reason why these frameworks have been abandoned is because there

Re: What is your setup for Rapid Application Development?

2013-04-26 Thread Andrew Schetinin
Hi Alexey, Well, you're right. To me, RAD was always about GUI prototyping or massive GUI development, turning around code generation tools. I've checked the terminology and found that it is a broader term, even mixed up with Agile and Scrum which are more about project management and not about

Re: What is your setup for Rapid Application Development?

2013-04-26 Thread Martin Grigorov
Hi Andrew, There are different tools for different tasks. That's clear. You prefer tools which generate code for you, I prefer finer control. That's OK. About performance check http://www.techempower.com/benchmarks/#section=data-r3 I'm not trying to convince you anything :-) On Fri, Apr 26,

Re: What is your setup for Rapid Application Development?

2013-04-25 Thread Alexey Mukas
In our project we are using the following tools/libs: - hibernate; - LiquiBase (db migration); - wro4j (for merging/compiling js, less and coffee script); - slf4j + logback; - selenium; - testng; - jmockit; - jmeter. -- View this message in context:

Re: What is your setup for Rapid Application Development?

2013-04-25 Thread Andrew Schetinin
Hi Alexey, RAD requires a set of good visual components (not a strong side of Wicket, unfortunately), and one of the two features - either a visual form editor (10 years ago), or automated CRUD forms generation (today) - again not a strong side of Wicket. In our case, we had to implement the