I have just started to try to work with the play framework and tried to understand this default application you get when creating a new project.
So as far as I understand, when loading the localhost page, a http get request comes in and is directed to the Application.index() method because of the specification in the routes file?
In the index() method a lot of HTML code is generated and returned in a Result object and passed to the index.scala.html file which hands it over to the main.scala.html where it is surrounded with more html.
Now, a few things are unclear to me:
in
Application.javathere is this linereturn ok(index.render("Hello World!"));index belongs toviews.html.*; but where is this package? I can't find it in the API :(why can't I rename the
index.scala.htmlfile? Is the name a convention?in the
index.scala.htmlfile itself: what does@play20.welcome(message, style = "Java")do? is this getting the "Welcome to Play 2.0" site? and again - I can't find the documentation/API entry for the play20 thing :(
I hope, somebody can help me to get an overview, as I am really confused at the moment..^^ I have done a lot of java, but no web programming at all, therefore this mix of all the different technologies and languages is quite strange at the moment!