81,122
社区成员




@Controller
@Scope(ScopeEnum.PROTOTYPE_SCOPE)
@RequestMapping("/user")
public class UserController extends BaseController {
@RequestMapping("/userLoginPage")
public String userLoginPage(){
return "forward:index.jsp:";
}
}
return "index.jsp";
就行了