12345678910111213141516171819 |
- package com.xt.dsp.controller;
- import org.springframework.stereotype.Controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- @Controller
- @RequestMapping("datasource")
- public class DatasourceCtl {
- /**
- * 主画面
- * @return
- */
- @RequestMapping("main")
- public String main() {
- //DataSourceBean bean = new DataSourceBean();
- return "rwgl/datasource/datasource";
- }
- }
|