views:

298

answers:

1

I'd like to explore some things regarding web CMS's in java and I would like to make an own one (very light), but I pretty much have no clue in how to begin. I'm used to java as a language and I've made some similar things in PHP, but I've never used servlets or java techniques in this matter.

Is there any "tutorial" or similar in this subject that I could have as a reference? Or any open source project that is very light with low dependencies?

A: 

Here is a list of (mostly) Java CMS tools that you could investigate. I recently looked for some CMS tools myself and found this page useful.

Note that CMS tools are built on top of other frameworks so you might have to investigate a bunch of other technologies, not just servlets. There were also some similar questions posted on SO by people trying to get advice on choosing a CMS. You should check them out.

About tutorials, I can't really say. I was looking for an already built solution and extend on that, but if you want to "disect" some of the available open source CMSs to see how they work, first check the amount of documentation available and the community (not all of them are fully documented).

dpb
Thanks.. The idea was to find a simple CMS that is not on top of some advanced framework, to make it possible to design one for myself, from scratch. I just wanted to see some good starting points :{
EvanAlm
I’m not sure that you will find a CMS that is not built on a framework. When you build an application of the likes of a CMS you usually reuse existing technologies. This helps you in NOT re-inventing the weal each time you add a feature to your application. For example, how would you access your MySQL database? Plain JDBC calls?
dpb