DatasourceCtl.java 414 B

12345678910111213141516171819
  1. package com.xt.dsp.controller;
  2. import org.springframework.stereotype.Controller;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. @Controller
  5. @RequestMapping("datasource")
  6. public class DatasourceCtl {
  7. /**
  8. * 主画面
  9. * @return
  10. */
  11. @RequestMapping("main")
  12. public String main() {
  13. //DataSourceBean bean = new DataSourceBean();
  14. return "rwgl/datasource/datasource";
  15. }
  16. }