zoukankan      html  css  js  c++  java
  • swagger2访问url

    swagger : http://localhost:8080/swagger/index.html

    springboot中的swagger:http://localhost:8080/swagger-ui.html      非常简单

    druid数据库监控 :http://localhost:8080/druid/index.html

    oracle分页计算方法

    //page是页数,rows是显示行数
            int page=1;
            int rows=10;                            
            List<Articles> list=a.select(page*rows+1,(page-1)*rows);
    sql语句:  select * from(select a.*,rownum rn from (select * from t_articles) a where rownum < 11) where rn>0
          //第一个参数,对应着第一个rownum<11,第二个参数对应着rn>5
    注意oracle 中的rownum是从1开始的
  • 相关阅读:
    CSS3阴影 box-shadow的使用和技巧总结
    事件
    表单操作
    DOM
    BOM
    js总结1
    css3
    css图片文字相关属性
    CSS盒子模型及布局
    写博客的几个注意事项
  • 原文地址:https://www.cnblogs.com/yueguanguanyun/p/9296165.html
Copyright © 2011-2022 走看看