0
votes
1answer
34 views
HTML attribute in Scala Template
I am a Java developer who recently started to learn about the Play Framework. I have been trying to get the below template working but cant seem to get it. I have got the following in my Scala ...
1
vote
2answers
44 views
Basic Play framework routing and web sockets example
I'm trying to learn how to use web sockets in Play 2.1, and I'm having trouble getting the web socket URL to work with my app's routing configuration. I started with a new Play application and the ...
1
vote
1answer
27 views
Playframework & Guice without routing
I would like to know if it's possible to inject dependencies using Guice without having to pass by the routing.
If it is how can I call my class Test @Inject()... within my application ?
0
votes
0answers
38 views
Serialize single variable of an object into a single value using json Writes in Play 2.1
I am using Play 2.1.1 with Scala. I want to be able to serialize an object into a single value so that I can toss them into a list and have it output an array of this object. I only want it to output ...
4
votes
1answer
37 views
Play modules test & FakeApplication
I would like to know what's the best way to run specs2 tests on a PlayFramework module and be able to simulate it running.
My module contains some routes in a file named mymodule.routes
In my apps I ...
1
vote
2answers
79 views
Play framework 2 scala templates - JavaScript
I tried to Google but couldn't find much. I'm playing with play 2 framework and it provides you scala templates. I'm thinking to use backbone for my next project which comes with underscore templates. ...
1
vote
3answers
116 views
Internal redirect for POST in Play apps?
I'm using Play Framework 2.0.3 and would like to add a filter that will internally re-route certain requests (that is, without a 301/302) to a URL in the app that is determined dynamically. That is, ...
0
votes
1answer
35 views
+150
Scala Play 2.0. Compilation error: IO error while decoding
I downloaded multi-module Scala project from GitHub, and one of the module is Play 2.0 module. So I can run whole application using SBT's run command on each module, and all works fine. But when I add ...
1
vote
4answers
71 views
Do async GET like in a loop but wait for response for each
I've googled this and cannot find an answer.
I want to make a GET to a url in Scala/play framework and then do something with the result. If the result contains what I want then I want to call it ...
1
vote
0answers
22 views
Deadbolt 2 in Scala ask if user has access to route
Making a menu in a scala template with some authorized links in them will look like this:
<ul>
<li><a href="@routes.Application.index()">Home</a></li>
...
1
vote
1answer
71 views
Intellij IDEA don't recognize Play 2.0 features
I checked out project from Github, then run sbt gen-idea and opened this project in IDEA. One of the project modules uses Play 2.0 Framework.
But IDEA don't recognize symbols specific to Play!.
...
6
votes
2answers
63 views
scala.tools.nsc.IMain within Play 2.1
I googled a lot and am totally stuck now. I know, that there are similar questions but please read to the end. I have tried all proposed solutions and none did work.
I am trying to use the IMain ...
0
votes
1answer
59 views
What is the correct way to configure actors in Play 2.x?
I noticed a slight difference between the documentation for 2.1 and 2.0:
2.0
akka.default-dispatcher.core-pool-size-max = 64
akka.debug.receive = on
2.1
...
0
votes
1answer
51 views
Scala Play - How to convert a list of Scala Strings into an Array of javascript Strings (avoiding the " issue)?
When converting a Scala list of Strings into a javascript Array of Strings with the Play template engine, you probably start with something like this ...
var strArray = ...
0
votes
1answer
47 views
Expose object JSON straight from database - Writing a Format[anorm.Pk[Long]]
Hello all :) I'm about 16 hours new to Scala and Play!Framework (version 2.1). I'm following this Play!2.0 tutorial with Anorm, which uses Jerkson. From what I understand, in 2.1 you can do that out ...
5
votes
2answers
59 views
How to determine when Play! 2 must recompile all files?
When I edit a scala file in my Play 2 app, sometimes only a few files are recompiled, but often the entire codebase must be recompiled:
[info] Compiling 1 Scala source to ...
1
vote
0answers
53 views
What is the future of playframework 2 in terms of web-templating and MV* [closed]
I have heard that Play Framework 2 will go to use spray instead of netty. Spray itself believes that
"The recent trend of moving web application logic more and more away
from the server and ...
0
votes
1answer
31 views
play framework 2.0 evolutions, how to mark an inconsistent state as resolved in PROD
I have an application developed in scala play2.0,
it worked successfully in local, but if failed when deployed to heroku.
the reason of the fail is that locally i was using a H2 database,
and using ...
0
votes
1answer
126 views
Play Framework 2.0 form helper: from select to List<T>
I have a model that contains a ManyToMany relation:
@JoinTable(name = "Contract_has_Institution", joinColumns = { @JoinColumn(name = "contract_id", referencedColumnName = "id") }, inverseJoinColumns ...
1
vote
2answers
86 views
Play 2.1 Json serialization of traits
The experimental "Inception" feature in Play 2.1 (Json.format[...]) only works for case classes (see here). How can I write my custom format implicit for a trait. I have the following construct:
...
1
vote
1answer
59 views
Too many arguments for method mapping: (apply: (String, models.Address) => R)(unapply: R => Option[(String, models.Address)])play.api.data.Mapping[R]
I have two case classes like this.
case class Company(name: String, address: Address)
case class Address(address1: String, address2: String,
city: String, state: String,
...
2
votes
1answer
67 views
Compile tests with SBT and package them to be run later
Im working with SBT and Play! Framework. Currently we have a commit stage in our pipeline where we publish to artifactory our binaries. The binaries are generated with the dist task. The pipeline then ...
0
votes
0answers
57 views
Different model validation on User Name in Scala Play! 2 form mapping in create and update
I have user mapping as follows (there are few others too)
val userMapping: Mapping[User] = mapping(
"id" -> ignored(NotAssigned: Pk[Long]),
"title" -> nonEmptyText,
"name" -> ...
1
vote
1answer
137 views
IntelliJ IDEA 12 with Play 2.0. No Java/Scaladocs
I configured IntelliJ IDEA 12 to work with Play 2.0 framework: installed Scala, Play 2.0 plugins and downloaded play 2.0.4 framework (I choosed play 2.0.4 root directory when created new project from ...
0
votes
1answer
54 views
Integrate SecureSocial with backend user services/storages?
Using Play! 2.0.4 and SecureSocial 2 (http://securesocial.ws/). Scala implementation. Most of this question will be directly referencing the sample here: ...
0
votes
2answers
51 views
How to use DATABSE_URL in Play 2.0 (Scala) for local connection to mysql
I'm new to Play framework. I'm trying to configure MySQL database as a datasource to be used with Play.
i have done following setting to connect mysql database to play..
...
0
votes
1answer
35 views
How to stop play 2.0.4 throwing java.lang.NoSuchMethodError: org.sbtidea.SbtIdeaPlugin
When running the play console (2.0.4) it returns:
[info] Loading global plugins from /home/matt/.sbt/plugins
[info] Loading project definition from /home/matt/src/app/project
[error] ...
0
votes
1answer
49 views
Adapt Enumerator / Iteratee to Stream
I have a Spray application where I'm using reactive-mongo to connect to my Mongo database.
val collection: BSONCollection = db("ping")
val cursor: Cursor[Ping] = ...
0
votes
2answers
78 views
Iterate Set in order Play Framework
I pass my template a TreeSet with Strings. However, when I loop over the set like this:
@(usernames : TreeSet[String])
@for( name <- usernames){
@name ,
}
However, the names are never ...
1
vote
2answers
123 views
Play Framework 2 Scala WS Doing a Sync Request
I am learning Scala. I used to use Play Framework 2 Java and trying to rewrite some of my previous work using and learning Scala.
I need to do a sync WS request and get Result Object from it ...
3
votes
1answer
239 views
play framework migrate to 2.1.1 gives me a headache
So I wanted to start working on a play framework project of mine I abandoned 5 months ago, the project was still in version 2.0.4 and seeing 2.1.1 was the latest version I did this tutorial to update ...
1
vote
0answers
39 views
Play Cache unable to deserialize case class
Seems the Play Cache (i.e. ehcache) is having trouble deserializing my case class. I'm seeing java.io.InvalidClassException (no valid constructor)
Is there a straightforward way around this? I ...
0
votes
2answers
98 views
Iterating over an array in JSON with Play 2.1.1
I am using play 2.1.1 and I am having issues iterating through an array. I had read somewhere that you can create a reads for a List[Object] but everytime I try to do this I get an error "No unapply ...
2
votes
2answers
88 views
Need reference to open source play framework based scala apps [closed]
I'm about to start small project using play2 and curious if there are any other sample applications available except ones which are coming together with play distribution.
0
votes
1answer
53 views
getting “incompatibe type” in returning an object instace
I'm writing a Play! 2.1 application using ReactiveMongo. each persistable case class has an object that holds 2 implicit objects, implementing BSONReader[...] and BSONWriter[...], and each case class ...
0
votes
0answers
51 views
sbt cannot resolve ensime-sbt-cmd in a Play2-Scala project
I'm trying to configure Sublime Text 2 to better support working with Scala and Play! 2 Framework by following instructions from ...
0
votes
1answer
76 views
Improving play template with javascript code
I have a play-template with javascript code in it. Everything works but it has two disadvantages:
Bad readability with eclipse-play-plugin, javascript is not colored in code highlighting
I can't ...
0
votes
1answer
49 views
named database in Play and Squeryl test gave error
I followed this link “Test the Model” part to write a test in Play and Squeryl. But I am using a named database "test" rather than "default". The following code does not work
import models.{AppDB, ...
0
votes
1answer
75 views
Can i use a javascript variable in an if sentence in scala in play framework?
I have a dropdown list:
<select id="sel">
<option value="1">test1</option>
<option value="2">test2</option>
<option value="3">test3</option>
</select>
...
0
votes
0answers
107 views
Test Driven Developement in SCALA [closed]
I am new to SCALA. Can you guide me about how to do with Test Driven Development(TDD) using SCALA.
I knew about specs2, but I am looking for more examples. I am following Play scala reference but ...
1
vote
1answer
72 views
Play Framework 2 Set form input class
I've read through documentation at http://www.playframework.com/documentation/2.0/ScalaFormHelpers and searched for the solution, but i can't figure out.
I can't imagine that you have to create ...
0
votes
1answer
84 views
Define a scala function in a play template
I try to use a function in a play view template
@active(path: String):String = @{
var active:String = ""
if (request.path.startsWith(path)) {
active = "class=\"active\""
...
3
votes
1answer
186 views
Play Framework 2.1.1 not resolving dependencies
I am trying to run play dependencies on my project and it is failing to find my dependencies. My situation is unique in that I am running on an internal LAN with absolutely no internet access so ...
0
votes
1answer
76 views
Improve scala algorithm in a play template
I'd like to improve an algorithm in a play template:
linklist.scala.html
<div class="row">
<div class="span6">
<table class="table table-hover">
@for((l,i) ...
0
votes
1answer
125 views
play framework forms without helpers -not getting the errors
Im trying to generate my views without more than basic scala due to the fact that i dont know it very well.
for this reason im writing just html to make the forms the only problem i have is to get ...
0
votes
1answer
222 views
Play Framework Json Object mapping partial objects
Another Play Framework 2.1 question as the documentation is too techie for me to wrap my head around.
If I have a scala case class object that represents something, say a server:
case class ...
1
vote
1answer
79 views
Play 2.0 and IDEA. Missed javaCore, javaJdbc, javaEbean dependencies
I created new play 2.1 Java project using Intellij IDEA, and when I open Build.scala file to manage dependencies I see that IDEA cannot resolve some dependencies and play.Project class. But project ...
3
votes
1answer
72 views
Play/Akka integration with Java OutputStreams
I'm writing a Play! application which exposes a REST API allowing users to generate PDF reports. I'm constrained by the requirements to use a old Java API to do the actual report generation. That ...
0
votes
0answers
50 views
AngularJS Detach Form from the Controller
I have two questions, the first in the title is, I have my form where I send the label and the date to the controller, that then sends them to the server through the resources. The problem is when I ...
0
votes
1answer
57 views
How to externally populate play! model
What would be the best idea to fill the play! models with data from an external source?
So far my application is small enough, that simply writing a Scala app doing JDBC inserts wouldn't be problem ...





