We are starting some work on a large a portlet development work using Liferay and I am finding it difficult to structure this project in terms of various portlets we are creating. We are not sure which way should we structure our project. We have distributed development team across world and we are using git as our version repository. We are using Spring Portlet MVC for developing portlets and using service builder for service layer.

I can think about these 3 approaches.

  1. Create a New Portlet project for each portlet

    • Keeping each portlet in a separate portlet project can be easy and fast in development since I can have developers independently working on them.
    • This may become pain in cases when portlets use common code. So there can be lot of proliferation of same type of code in different portlets.
    • This may go out of control since we will have many war files and each add to runtime cost of us.
  2. Logically separate portlets into number of portlet projects

    • This will reduce the number of portlet projects and lot of code can be reused.
    • Some control can be placed in such structure.
  3. Create just one portlet project with all portlets

    • This will be most complicated to manage for distributed developer team.
    • Most of common code can be reused.
    • Enforcing consistency can be easier in this.
  4. Mix of 1 and 2 (Based on my discussion with Dirk in comments below) This approach needs to be mix of 1 and 2 I guess.

    • I would want to give each developer a independent portlet dev env along with some guidelines on common components.
    • This way they have more control on their portlet code and only focus on portlet specific code.
    • At the same time common code may need to have more control since multiple people may modify it.

I would like to know your expert opinion if you have already created liferay projects/portlets and what approach you chose. Keeping these things in mind

  • How do you control the portlet development when there are multiple portlets being developed by variety of developers.
  • What are pros/cons of any of the above approaches above mentioned.
  • If none of the above mentioned approaches are good please mention the best approach to this you can think of.

Thanks for reading

link|improve this question

17% accept rate
feedback

2 Answers

I think it pretty much depends on what kind of project you are actually building. Are the portlets you are talking about portlets in the sense of encapsulated functionality and will be used as such (i.e. as portlet in Liferay finally)? Those should be put in different projects in my opinion if their functionality of those is disjoint and they don't depend on eachother.

If you have a core of functionality (e.g. persistence layer and associated logic or other business logic) you should definitely reuse this in as much as possible. Thus, I don't think (1) is a good solution and this common logic should be grouped in a seperate project for instance and the portlets themselves depend on this.

As a general approach: what would be the problem to let the developers all have access to all (or most) projects? The common code could be reused by all portlets and still everyone would have to only work on his/her part.

link|improve this answer
Thanks for your input. My thought about each portlet project is it creates its own war file and each may require us to have all spring dependancies in it. Which can be a runtime cost. – Kzvi May 11 '11 at 15:36
The project has a lot of portlets which are interconnected and have dependancies on each other. Also they are going to use same service layer which we are planning to keep common (as you already mentioned). – Kzvi May 11 '11 at 15:38
Thinking loud, may be keeping all spring and other dependancies at our appserver level may reduce runtime cost. – Kzvi May 11 '11 at 15:42
If dependencies are the only problem: since Liferay itself comes with like a billion libraries (including Spring iirc), you can just refer to them by using liferay-plugin-package.properties (see here for example.) – Dirk May 11 '11 at 15:44
Thanks, this makes more sense. – Kzvi May 11 '11 at 15:51
show 2 more comments
feedback

Adding just something to Dirk's answer, my rule of thumb is to have portlets with a similar maintenance cycle in the same project - e.g. if you update one of them you typically update all of them, because they make an application, presenting the same data through different UIs. This is basically your option 2.

Other than that you nailed the options quite good - the answer is "in the middle". Balance separation with app-server overhead. Use the rule of thumb above and you're set.

With regards to development environments: Every developer should work on their own environment, however, through version control they can - of course - work on the same projects.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.