@Controller public class PostController extends Object
| 构造器和说明 |
|---|
PostController() |
| 限定符和类型 | 方法和说明 |
|---|---|
String |
lst(org.springframework.ui.Model model) |
String |
lst(String page,
org.springframework.ui.Model model) |
String |
opt(int id,
String title,
int category,
String tag,
String content,
Integer visible,
Integer operable,
org.springframework.ui.Model model,
javax.servlet.http.HttpServletResponse response) |
String |
opt(org.springframework.ui.Model model) |
String |
opt(String urlTitle,
org.springframework.ui.Model model) |
String |
post(String urlTile,
org.springframework.ui.Model model) |
@RequestMapping(value="/admin/post/opt",
method=GET)
public String opt(org.springframework.ui.Model model)
@RequestMapping(value="/admin/post/opt/{urlTitle}",
method=GET)
public String opt(@PathVariable
String urlTitle,
org.springframework.ui.Model model)
@RequestMapping(value="/admin/post/opt",
method=POST)
public String opt(int id,
String title,
int category,
String tag,
String content,
Integer visible,
Integer operable,
org.springframework.ui.Model model,
javax.servlet.http.HttpServletResponse response)
@RequestMapping(value="/admin/post/lst",
method=GET)
public String lst(org.springframework.ui.Model model)
@RequestMapping(value="/admin/post/lst/{page}",
method=GET)
public String lst(@PathVariable
String page,
org.springframework.ui.Model model)
Copyright © 2011–2015 Azollas. All rights reserved.