首页>代码>Spring mvc+jdbc+jstl分页,ajax开发的java web酒店管理系统,适合入门>/新建文件夹 (2)/jiudianguanli/src/com/bdnq/controller/RuZhuController.java
package com.bdnq.controller;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import com.bdnq.entity.RuZhu;
import com.bdnq.service.RuZhuService;
@Controller
@RequestMapping("/ruzhu")
public class RuZhuController {
@Autowired
private RuZhuService ruZhuService;
@RequestMapping("/getAllRuZhu")
public String getAllFangJian(HttpServletRequest request){
List<RuZhu> list = ruZhuService.getAllRuZhu();
for (RuZhu ruZhu : list) {
System.out.println(ruZhu.getId());
}
request.setAttribute("rz", list);
return "getAllRuZhu";
}
}
最近下载更多
颜菜菜 LV2
2023年12月23日
214109 LV2
2022年12月9日
微信网友_6248713511227392 LV11
2022年12月5日
最代码-宋家辉 LV61
2022年6月23日
user123qyb LV1
2022年5月17日
xk16675552250 LV33
2022年3月31日
程序员阿莱 LV2
2021年11月23日
小火火 LV7
2021年10月4日
famloliy LV6
2021年8月23日
康日澜 LV10
2021年6月26日
最近浏览更多
微信网友_7289626841501696 LV4
6月15日
Anonly LV2
5月26日
xiao小果 LV13
2024年8月27日
TY0165 LV20
2024年6月24日
1827129306e LV1
2024年5月27日
pokerf LV5
2024年4月26日
微信网友_6906962132258816 LV7
2024年4月15日
yeanan LV1
2024年3月28日
heshao LV2
2024年1月11日
颜菜菜 LV2
2023年12月23日

