SPRINGMVC gets the parameter that the link carries, returns the JSON garbled problem

Source: Internet
Author: User

First, SPRINGMVC get the parameters of the link carry: Often see some links are xxxx/1.html, through SPRINGMVC can also achieve this acquisition, to dynamically obtain the parameters of the link to carry, using @PathVariable can be, such as:

@RequestMapping ("/user_to_update_page/{id}.html") public Modelandview toupdate (@PathVariable ("id") Integer ID) Throws Exception {Modelandview m = new Modelandview ("User/user_to_update_page"); User U = this.userService.getOneById (id); M.addobject ("User", u); return m;}

Data binding with ${id} and @pathvariable to achieve xxxx/1.html effect

Second, about the return JSON garbled

add produces configuration after requestmapping to solve garbled characters

@RequestMapping (value= "/testdubbo.html", produces= "Text/html;charset=utf-8")


SPRINGMVC gets the parameter that the link carries, returns the JSON garbled problem

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.