vaadin 7 Parametr URL

Nie jestem zbyt zaznajomiony z vaadin 7 i nie mogę tego zrozumieć. Próbowałem użyć google, ale bez użytecznego wyniku.

Moje pytanie jest bardzo proste. Jak mogę uzyskać parametry adresu URL żądania w mojej klasie interfejsu użytkownika?

Mój adres URL ma parametr:host/myvaadinapp/?code=erefdvdfgftf...

Parametr url pochodzi z Facebooka po zalogowaniu się użytkownika (OAuth) i muszę obsługiwać wartość parametru url kodu w moim kodzie.

Próbowałem to zrobić:

    @PreserveOnRefresh
    public class AdminUi extends UI
    {
        @Override
        protected void init(VaadinRequest request)
        {
            ...
            System.out.println( request.getPathInfo());
            System.out.println( request.getRemoteHost());
            System.out.println( request.getParameterMap().size());
            System.out.println( request.getAttribute("code") );
            System.out.println( request.getParameter("code") );
            ...
        }
    }

Wynik: request.getAttribute ("kod"): null request.getParameter ("kod"): null

Zrozumiałem, że getParameterMap () ma parametr „v-loc”. Ale jeśli użyję tej zmiennej, muszę napisać jakiś kod, aby uzyskać parametr url z tej zmiennej:

v-loc:host/myvaadinapp/?code=erefdvdfgftf... motyw: renifer v-rtzo: -600 v-dston: false ...

Myślę, że nie jest to zbyt miłe rozwiązanie.

Czy możesz mi pomóc, jak mogę uzyskać oryginalne parametry URL w vaadin?

Dziękuję Ci.

Mój komentarz to:

Próbowałem użyć request.getParameter („kod”), ale nie działał. Nie wiem dlaczego.

Mój oryginalny adres URL to:host/demoVaadinApp/?name=zzz

Użyłem tego kodu:

    public class Xxxx extends UI
    {
        /**
     * Main UI
     */
    @Override
    protected void init(VaadinRequest request)
    {
        String name = request.getParameter("name");
        if (name == null)
            {
            name = "Unknown";
        }

        setContent(new Label("Hello " + name));
        }
    }

Rozpoczynam aplikację vaadin w trybie osadzania interfejsu użytkownika.

Zawartość mojego pliku web.xml:

<!-- ******************************************************************* -->
<!-- context parameters                                                  -->
<!-- ******************************************************************* -->
<context-param>
    <description>Vaadin production mode</description>
    <param-name>productionMode</param-name>
    <param-value>false</param-value>
</context-param>

<!-- ******************************************************************* -->
<!-- servlet definition                                                  -->
<!-- ******************************************************************* -->
<!-- +++++ Vaadin  servlet +++++++++++++++++++++++++++++++++++++++++++++ -->
<servlet>
    <servlet-name>VaadinServlet</servlet-name>
    <servlet-class>com.vaadin.server.VaadinServlet</servlet-class>
    <init-param>
        <description>Vaadin UI class</description>
        <param-name>UI</param-name>
        <param-value>com.coupoholics.ui.admin.AdminUi</param-value>
    </init-param>
</servlet>
<servlet-mapping>
    <servlet-name>VaadinServlet</servlet-name>
    <url-pattern>/VAADIN/*</url-pattern>
</servlet-mapping>

<!-- ******************************************************************* -->
<!-- welcome file list definition                                        -->
<!-- ******************************************************************* -->
<welcome-file-list>
    <welcome-file>index.html</welcome-file>
</welcome-file-list>

index.html:

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>

<body>
    <script type="text/javascript" src="./VAADIN/vaadinBootstrap.js"></script>
    <iframe tabindex="-1" id="__gwt_historyFrame" style="position: absolute; width: 0; height: 0; border: 0; overflow: hidden" src="javascript:false"></iframe>

                 <div id="content-body">
                    <!-- Optional placeholder for the loading indicator -->
                    <div class=" v-app-loading"></div>
                    <!-- Alternative fallback text -->
                    <noscript>You have to enable javascript in your browser to use this application.</noscript>
                </div>

    <!--  Initializing the UI -->
    <script type="text/javascript">
        //<![CDATA[
            if (!window.vaadin)
                alert("Failed to load the bootstrap JavaScript:" + "VAADIN/vaadinBootstrap.js");

            /* The UI Configuration */
            vaadin.initApplication("content-body", {
              "browserDetailsUrl": "VAADIN",
              "serviceUrl": "VAADIN",
              "widgetset": "com.vaadin.DefaultWidgetSet",
              "theme": "reindeer",
              "versionInfo": {"vaadinVersion": "7.0.5"},
              "vaadinDir": "VAADIN/",
              "heartbeatInterval": 300,
              "debug": true,
              "standalone": false,
              "authErrMsg": {
                  "message": "Take note of any unsaved data, "+
                             "and <u>click here<\/u> to continue.",
                  "caption": "Authentication problem"
              },
              "comErrMsg": {
                  "message": "Take note of any unsaved data, "+
                             "and <u>click here<\/u> to continue.",
                  "caption": "Communication problem"
              },
              "sessExpMsg": {
                  "message": "Take note of any unsaved data, "+
                             "and <u>click here<\/u> to continue.",
                  "caption": "Session Expired"
              }
         });//]]>
        </script>

</body>

Mój wynik to: Hello Unknown.

Jeśli nie korzystam z trybu Embedding UI, wszystko działa bardzo dobrze.

Gdzie jest problem?

Rozwiązanie (dziękuję za Leif Åstrand):

var urlParts = window.location.href.split ("?");

var queryString = (urlParts.length == 1)? „”: „?” + urlParts [1];

queryString = (urlParts.length == 0)? „”: queryString.split („#”) [0];

i

„browserDetailsUrl”: „VAADIN” + queryString,

Pełny kod źródłowy:

    <!--  Initializing the UI -->
    <script type="text/javascript">
        var urlParts = window.location.href.split("?");
        var queryString = (urlParts.length == 1) ? "" : "?" + urlParts[1];
        queryString = (urlParts.length == 0) ? "" : queryString.split("#")[0];

        //<![CDATA[
            if (!window.vaadin)
                alert("Failed to load the bootstrap JavaScript:" + "VAADIN/vaadinBootstrap.js");

            /* The UI Configuration */
            vaadin.initApplication("content-body", {
              "browserDetailsUrl": "VAADIN" + queryString,
              "serviceUrl": "VAADIN",
                          ...

questionAnswers(2)

yourAnswerToTheQuestion