摘要:
springboot和springmvc的区别 spring boot 内嵌tomcat,Jetty和Undertow容器,可以直接运行起来,不在再做部署; spring boot 自动配置,减少了xml文件的大量配置;降低了项目搭建的复杂度 Spring MVC是基于 Servlet 的一个 MV 阅读全文
摘要:
1、pl/sql的if判断 //输入<18的数字,输出未成年 //输入>18和<40的数字,输出中年人 //输入>40的数字,输出老年人 declare i number(3) :=$ii; begin if i<18 then dbms_output.put_line("未成年"); elsif 阅读全文