play-samples icon indicating copy to clipboard operation
play-samples copied to clipboard

Play Framework Sample Projects

Results 95 play-samples issues
Sort by recently updated
recently updated
newest added

I am exploring the [play-java-dagger2-example](https://github.com/playframework/play-samples/tree/2.8.x/play-java-dagger2-example) project. I tried to get `JPAApi` instance from `MyComponentsFromContext` like this: ```java JPAApi jpaApi = application().injector().instanceOf(JPAApi.class); ``` But this throws `[NoSuchMethodException: play.db.jpa.JPAApi.()]` What is the...

Cloned the `play-samples` on my machine, and followed [the documentation](https://developer.lightbend.com/guides/play-scala-grpc-example/locally.html) for locally running the `play-scala-grpc-example` sample app, but received an exception when invoking `curl --insecure https://localhost:9443/` Here's the exception on...

It seems that the current version of the sample does not consider the client certificate based authentication option set with `play.ssl.needClientAuth=true` . Steps to reproduce: 1. Git clone of the...

**DO NOT MERGE INTO THE 2.8.x (or 2.7.x) BRANCH!** **This PR needs to be merged into a future 2.9.x branch instead.** Fixes #96 See https://github.com/playframework/playframework/pull/10734

Hi This is i found while trying res-api example sbt run [info] welcome to sbt 1.3.13 (Oracle Corporation Java 1.8.0_151) [info] loading settings for project global-plugins from idea.sbt ... [info]...

See https://github.com/playframework/playframework/issues/10246

triage

Beginners find it really tough to work with play framework especially when they have to implement a new thing and they don't find a suitable example for the same. Here...

We could add something like https://github.com/akka/akka-guide/blob/54a81ce729ef07e1f9b97f0f15a4ff7d60e4d0ed/scripts/format-all.sh and even remove the separate Travis jobs. WDYT? Code, click to exapnd ```sh #!/usr/bin/env bash declare -r tutorial_root="docs-source/docs/modules/microservices-tutorial/examples" find ${tutorial_root} -name .scalafmt.conf | while...

Hello :) I would suggest to create an example on how to secure a REST Endpoint via JSON Web Token. The main reasons in my opinion are as followed: 1....