Přidat otázku mezi oblíbenéZasílat nové odpovědi e-mailemVyřešeno Ajax ve springu - nefunguje mi hello world

Ahoj, nefunguje mi hello world, mohl by mi někdo poradit?

Servlet:

import javax.servlet.http.HttpServlet;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class SomeController {

    @RequestMapping(value = "/profile", method = RequestMethod.GET)
    public @ResponseBody
    String processAJAXRequest(
            @RequestParam("firstname") String firstname,
            @RequestParam("lastname") String lastname) {
        String response = "HELLO: " + firstname + " " + lastname;
        return response;
    }
}
Html stránka:

<html>
    <head>
        <title>TODO supply a title</title>
        <meta charset="windows-1250">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    </head>
    <body>
        <form id="sampleForm" method="post" action="/profile">
            <div>
                <input type="text" name="firstname" id="firstname">
            </div>
            <div>
                <input type="text" name="lastname" id="lastname">
            </div>
            <div>
                <button type="submit" name="submit">Submit</button>
            </div>
        </form>
        <script>

            $(document).ready(function () {
                $('#sampleForm').submit(
                        function (event) {
                            var firstname = $('#firstname').val();
                            var lastname = $('#lastname').val();
                            var data = 'firstname='
                                    + encodeURIComponent(firstname)
                                    + '&lastname='
                                    + encodeURIComponent(lastname);
                            $.ajax({
                                url: $("#sampleForm").attr("action"),
                                data: data,
                                type: "GET",
                                success: function (response) {
                                    alert(response);
                                },
                                error: function (xhr, status, error) {
                                    alert(xhr.responseText);
                                }
                            });
                            return false;
                        });
            });

        </script>
    </body>
</html>
Když to pustím dostanu 404. V čem je problém?

Dělám něco špatně? Děkuji za rady.

Odpověď na otázku

1 Zadajte svou přezdívku:
2 Napište svou odpověď:
3 Pokud chcete dostat ban, zadejte libovolný text:

Zpět do poradny