SpringMVC select 页面接受参数

public ModelAndView listNewsSearch(

            @ModelAttribute("shortTitle") String shortTitle,

            @ModelAttribute("author") String author,

            @ModelAttribute("sortType") String sortType)

------------------------------------------------------------------------------------

标题 <input name="shortTitle" value="${shortTitle }" type="text">

发布者 <input name="author" value="${author }" type="text">

<select name="sortType" >

<option value="IdAsc">ID升序</option>

<option value="IdDesc">ID降序</option>

</select> 

<input type="button" value="查询" class="btn_search" onclick="go_search();">

--------------------------------------------------------------------------------------

输入三个参数查询后,controlle处理完返回到页面,怎么可以让select选中的框是之前选的一样

@ModelAttribute 前两个可以不变 select该怎么写

selected="true" /c:if >ID升序

selected="true" /c:if >ID升序