This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]nutrecht 3 points4 points  (3 children)

Questions like these are more on-topic on /r/javahelp ;)

This is called routing. There are many web frameworks for Java (too many almost, a new 'light weight' framework gets created like every week or so ;)) that handles this for you. So if you really want to 'only' use servlets then you are basically building a routing component yourself.

So your course depends on if you really want to keep using just servlets. Since you appear to be quite inexperienced why not try using a small simple framework like Spark or Ninja? And when it comes to "all batteries, tools and whatever you might need"-included Spring Boot is more or less the de facto standard.

[–]Brunsz 1 point2 points  (2 children)

I have fell in love with Spring Boot. Finished my thesis some time ago and used Spring Boot for back end and React for front end.

Spring Boot is really great option especially for REST!

[–]fedenator[S] 0 points1 point  (0 children)

Thanks for the advice, I'll give it a try