Is there a very tiny CMS in Java with MySQL?

I would like to learn some things regarding web CMS in java and I would like to create my own (very easy), but I hardly know how to start. I use java as a language and I did some similar things in PHP, but I never used servlets or java methods in this question.

Is there any “tutorial” or similar in this thread that I could use as a reference? Or any open source project that is very bright with low dependencies?

+3
source share
1 answer

Here is a list of (mostly) Java CMS tools you could learn. I recently searched for some CMS tools and found this page useful.

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

About textbooks, I can’t say. I looked for an already built solution and expanded it, but if you want to “disable” some of the open source CMS to see how they work, first check the amount of documentation available and the community (not all of them are fully documented).

+2

Source: https://habr.com/ru/post/1728614/


All Articles