How to get the game! Javadocs framework?

I'm going to start a new project, and we decided to use Play !. I set up my IDE (Eclipse Luna), but unfortunately there is no sign of documentation when I find any function, class or so on.

Looking over the internet, I came up with a Play github repo ( https://github.com/playframework/playframework ) and they have a documentation folder ( https://github.com/playframework/playframework/tree/master/documentation ).

So, how can I create Javadoc based on their Github documentation documentation?

PS: I use the latest version of Play, i.e. 2.3.6, where the play command is replaced by an activator.

+4
source share
6 answers

You must pass the full argument in the quote to the activator command. Here is what worked for me:

.\activator "eclipse with-source=true"

I think activator otherwhise recognize eclipseand with-source=trueas two separate teams, not one command with an argument.

+7
source

The documents are not clear, so we got this annoying mistake.

  • cd to your web application folder
  • $. / activator
  • [your project] $ eclipse with-source = true

The call ./activator eclipseworks, but ./activator eclipse with-source=truenot in the way it is (implied?) That it works from the activator shell.

Hope this helps. :)

+6
source

eclipse sbt : eclipse with-source=true. . java decompiler eclipse - .

0

Play :

http://localhost:9000/@documentation/api/java/index.html

, https://www.playframework.com/documentation API- , Java 2.3x Scala 2.3x. , , 2.4.x

0

In the end, I decided to use an older version of Play! framework because it comes with a binary “play” (not an activator).

Having placed myself on my project, I typed: $ play > eclipse with-source=true

I don’t know why, but I can’t access the same way:

[1] $ activator > eclipse with-source=true

because he is stuck on [1] does not continue.

0
source

All Articles