首页>代码>SSM+jsp开发综合类购物商城项目ShopProject,有简单的后台管理功能>/SSM-ShopProject-master/shop-controller/src/main/java/com/zt/controller/InitController.java
package com.zt.controller; import com.sun.deploy.net.HttpResponse; import com.zt.service.InitService; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import javax.annotation.Resource; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.PrintWriter; @Controller public class InitController { @Resource private InitService initService; @RequestMapping(value = "/init.action",method = RequestMethod.POST) public void init(HttpServletResponse response){ PrintWriter out = null; try{ out = response.getWriter(); initService.init(); out.print("success"); out.flush(); }catch (IOException e){ e.printStackTrace(); }finally {} out.close(); } }

ma406805131 LV19
2024年12月18日
SDLFJL LV6
2023年8月15日
ai1017659012 LV9
2023年6月11日
苏拉德666 LV4
2023年5月15日
全栈小白 LV35
2023年4月15日
吴尚宇 LV2
2023年4月7日
计算机暴龙战士 LV19
2023年4月5日
a1017514773 LV6
2023年3月14日
gaoxuyang LV8
2023年2月22日
jrqlove LV5
2023年2月14日