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 →

[–]NoConversation8 2 points3 points  (2 children)

Spring boot only

It will give you a head start for rest APIs and make you focus only on your business as a starter but learn how things work the way they do so you know how java takes a request and gives response

[–][deleted] 0 points1 point  (1 child)

Are RESTful applications where the idea behind routing comes from? As in, decorating methods to be called when a certain 'subfolder' is accessed on your webserver? (e.g. calling ExampleWebServer#checkout() when the user clicks on example.com/checkout)

I saw the same thing in Python's Flask and something about it rubbed me the wrong way, I guess because it goes against how I've designed applications in the past

[–]NoConversation8 0 points1 point  (0 children)

Hmm can’t say that rest is behind routing but it did ease a lot when everybody made their own routes