Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I installed the new version of the play framework 2.0. Now I am trying to connect to the sample application from the tutorial but something seems not to be working. Here is what i did:

Create the "todolist" application:

play new todolist

play! 2.0, http://www.playframework.org

The new application will be created in /home/evermean/Code/playWorkspace/todolist

What is the application name?

>todolist

Which template do you want to use for this new application?

1 - Create a simple Scala application
2 - Create a simple Java application
3 - Create an empty project

> 2

OK, application todolist is created. Have fun!

Execute play command:

$ cd todolist
$ play

Getting org.scala-tools.sbt sbt_2.9.1 0.11.2 ...
:: retrieving :: org.scala-tools.sbt#boot-app
confs: [default]
37 artifacts copied, 0 already retrieved (7324kB/127ms) [info] Loading project definition from /home/evermean/Code/playWorkspace/todolist/project
[info] Set current project to todolist (in build file:/home/evermean/Code/playWorkspace/todolist/)

play! 2.0, http://www.playframework.org

> Type "help play" or "license" for more information. > Type "exit" or use Ctrl+D to leave this console.

Execute the run command:

[todolist] $ run

[info] Updating {file:/home/evermean/Code/playWorkspace/todolist/}todolist... [info] Done updating.
--- (Running the application from SBT, auto-reloading is enabled) ---

[info] play - Listening for HTTP on port 9000...

(Server started, use Ctrl+D to stop and go back to the console...)

Now I try to connect to the site http://localhost:9000

I get the following output:

[info] Compiling 4 Scala sources and 2 Java sources to /home/evermean/Code/playWorkspace/todolist/target/scala-2.9.1/classes...

[warn] Problem processing dependencies of source /home/evermean/Code/playWorkspace/todolist/app/controllers/Application.java : java.lang.UnsupportedClassVersionError: controllers/Application : Unsupported major.minor version 51.0

[warn] Error reading API from class file : java.lang.UnsupportedClassVersionError: controllers/Application : Unsupported major.minor version 51.0

[warn] Problem processing dependencies of source /home/evermean/Code/playWorkspace/todolist/target/scala-2.9.1/src_managed/main/controllers/routes.java : java.lang.UnsupportedClassVersionError: controllers/routes : Unsupported major.minor version 51.0

[warn] Problem processing dependencies of source /home/evermean/Code/playWorkspace/todolist/target/scala-2.9.1/src_managed/main/controllers/routes.java : java.lang.UnsupportedClassVersionError: controllers/routes$ref : Unsupported major.minor version 51.0

[warn] Problem processing dependencies of source /home/evermean/Code/playWorkspace/todolist/target/scala-2.9.1/src_managed/main/controllers/routes.java : java.lang.UnsupportedClassVersionError: controllers/routes$javascript : Unsupported major.minor version 51.0

[warn] Problem processing dependencies of source /home/evermean/Code/playWorkspace/todolist/target/scala-2.9.1/src_managed/main/controllers/routes.java : java.lang.UnsupportedClassVersionError: controllers/routes : Unsupported major.minor version 51.0

[warn] Problem processing dependencies of source /home/evermean/Code/playWorkspace/todolist/target/scala-2.9.1/src_managed/main/controllers/routes.java : java.lang.UnsupportedClassVersionError: controllers/routes$ref : Unsupported major.minor version 51.0

[warn] Problem processing dependencies of source /home/evermean/Code/playWorkspace/todolist/target/scala-2.9.1/src_managed/main/controllers/routes.java : java.lang.UnsupportedClassVersionError: controllers/routes : Unsupported major.minor version 51.0

[warn] Problem processing dependencies of source /home/evermean/Code/playWorkspace/todolist/target/scala-2.9.1/src_managed/main/controllers/routes.java : java.lang.UnsupportedClassVersionError: controllers/routes$javascript : Unsupported major.minor version 51.0

[warn] Error reading API from class file : java.lang.UnsupportedClassVersionError: controllers/routes : Unsupported major.minor version 51.0

[warn] Error reading API from class file : java.lang.UnsupportedClassVersionError: controllers/routes$ref : Unsupported major.minor version 51.0 [warn] Error reading API from class file : java.lang.UnsupportedClassVersionError: controllers/routes$javascript : Unsupported major.minor version 51.0

[info] play - Application started (Dev)

I really do not know what to make of that, perhaps someone has an idea on this one. I guess I'm doing something wrong but cannot see where my mistake lies. I hope some can help.

Thanks...

share|improve this question

2 Answers

up vote 4 down vote accepted

It looks as though the JDK you are using is too old. What version of Java are you using?

share|improve this answer
1  
Thanks a lot, my javac version was 1.7.0 and I had to set it back to 1.6.0_26 to get play to work. I will update my post with the steps I took to resolve the problem. Thanks again. – evermean Mar 18 '12 at 17:41
I had the same problem I could run/start the application using jdk 7u5. But when I used dist and java -cp it would not work. I needed to revert back to jdk-6u23 for it to work – user1434177 Aug 3 '12 at 2:38

I just had this same problem. I didn't want to believe it was a JDK version error with play 2.0. Thought about it for 10 mins and realized I didn't have scala installed. Once scala was install it got rid of those errors.

share|improve this answer
Don't forget to clean and recompile the project too! – Tony May 12 '12 at 3:24
I was getting these errors when moving my play projects from one environment to another (Windows to Linux). Running play clean projectname did the trick. – Peter Jun 18 '12 at 2:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.