資源簡介
一個非常入門級的 springmvc 示例源碼
代碼片段和文件信息
package?com.mucfc;
import?org.springframework.stereotype.Controller;??
import?org.springframework.ui.ModelMap;??
import?org.springframework.web.bind.annotation.RequestMapping;??
import?org.springframework.web.bind.annotation.RequestMethod;??
@Controller??
public?class?HelloWorldController?{??
????@RequestMapping(value=“/hello“)??
????public?String?printWelcome(ModelMap?model)?{??
????????model.addAttribute(“message“?“Spring?3?MVC?Hello?World“);??
????????return?“hello“;??
????}??
}
評論
共有 條評論