web-dev-qa-db-ja.com

Java Playフレームワークでクエリ文字列パラメーターを取得するには?

私はJava playフレームワーク。

/ something?x = 10&y = 20&z = 30

ここで、「?」の後にすべてのパラメータを取得したいkey ==> valueペアとして。

20
Sadik

クエリパラメータをroutesファイルに組み込むことができます。

http://www.playframework.com/documentation/2.0.4/JavaRouting 「デフォルト値を持つパラメーター」セクション

または、アクションでそれらを要求できます。

public class Application extends Controller {

    public static Result index() {
        final Set<Map.Entry<String,String[]>> entries = request().queryString().entrySet();
        for (Map.Entry<String,String[]> entry : entries) {
            final String key = entry.getKey();
            final String value = Arrays.toString(entry.getValue());
            Logger.debug(key + " " + value);
        }
        Logger.debug(request().getQueryString("a"));
        Logger.debug(request().getQueryString("b"));
        Logger.debug(request().getQueryString("c"));
        return ok(index.render("Your new application is ready."));
    }
}

たとえば、http://localhost:9000/?a=1&b=2&c=3&c=4コンソールに印刷します。

[debug] application - a [1]
[debug] application - b [2]
[debug] application - c [3, 4]
[debug] application - 1
[debug] application - 2
[debug] application - 3

cはURLに2回あることに注意してください。

34
Schleichardt

Play 2.5.xでは、conf/routesで直接作成され、デフォルト値を設定できます:

# Pagination links, like /clients?page=3
GET   /clients              controllers.Clients.list(page: Int ?= 1)

あなたの場合(文字列を使用する場合)

GET   /something            controllers.Somethings.show(x ?= "0", y ?= "0", z ?= "0")

強い型付けを使用する場合:

GET   /something            controllers.Somethings.show(x: Int ?= 0, y: Int ?= 0, z: Int ?= 0)

詳しい説明については、 https://www.playframework.com/documentation/2.5.x/JavaRouting#Parameters-with-default-values を参照してください。

16
koppor

すべてのクエリ文字列パラメーターをマップとして取得できます。

Controller.request().queryString()

このメソッドはMap<String, String[]>オブジェクトを返します。

8
Saeed Zarinfam

FormFactory を使用できます。

DynamicForm requestData = formFactory.form().bindFromRequest();
String firstname = requestData.get("firstname");
0
szymond

Java/Play 1.xあなたはそれらを取得します:

    Request request = Request.current();
    String arg1 = request.params.get("arg1");

    if (arg1 != null) {
        System.out.println("-----> arg1: " + arg1);
    } 
0
user9869932