baby_sama
baby_sama

Reputation: 41

What is the purpose of "::#" in a string returned from a RequestMethod?

In my project, in a method I see a following return statement :

@RequestMapping(method=RequestMethod.GET, params="part=category-fieldset")
public String partCategoryFieldset(@PathVariable String language, Model model) {
    CategoryTree categoryTree = categoryService.readCategoryTree(language);
    model.addAttribute("categoryTree", categoryTree);
    return "/article/create::#category-fieldset";
}

So, i would like to ask: What is the purpose of double colon and sharp sign in return statement? What does this mean? Thank you!

Upvotes: 2

Views: 272

Answers (1)

baby_sama
baby_sama

Reputation: 41

Yeah! I finded the answer for me. It's Thymeleaf Framwwork. at here

Upvotes: 1

Related Questions