码迷,mamicode.com
首页 >  
搜索关键字:rect    ( 5022个结果
为什么javaweb项目只有放在webapps中才能运行
因为在conf/server.xml中把webapps做为appBase。可查看server.xml中的如下代码,并注意到appBase="webapps": <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy= ...
分类:移动开发   时间:2021-01-05 11:08:29    阅读次数:0
Delphi image 等比例缩小
//等比例缩小 uses Math; var Zoom:Extended; W,H:integer; bmp:Tbitmap; begin bmp:=Tbitmap.Create; bmp.LoadFromFile('c:\aa.bmp'); Zoom:=Image1.Width/Max(bmp.W ...
分类:Windows程序   时间:2021-01-01 11:59:30    阅读次数:0
不同Controller 之间的跳转
Controller 之间的跳转 spring MVC框架controller间跳转,需重定向。 有几种情况: 不带参数跳转 带参数拼接url形式跳转 带参数不拼接参数跳转,页面也能显示。 常用的方法: 情况一:从一个controller中的方法跳转到另一个controller中的方法不需要传递参数 ...
分类:其他好文   时间:2020-12-31 12:45:08    阅读次数:0
go开发目录配置-go mod
在go1.11之后版本中支持go mod 管理工程文件: src目录下建立github.com目录 在github.com目录下建立project文件夹 project文件夹作为工作目录 在project目录下,执行go mod init github.com/project配置工程环境;在proj ...
分类:其他好文   时间:2020-12-31 12:11:43    阅读次数:0
深入分析 string.intern() 方法
作者:Mazin 来源:my.oschina.net/u/3441184/blog/887152 首先我们来看一段代码: public class InternTest { public static void main(String[] args) { String str1 = new Stri ...
分类:其他好文   时间:2020-12-30 11:23:27    阅读次数:0
logrotate日志文件管理工具
1. logrotate 介绍 logrotate 程序是一个日志文件管理工具。用来把旧的日志文件删除,并创建新的日志文件,称为日志 转储或滚动。可以根据日志文件的大小,也可以根据其天数来转储,这个过程一般通过 cron 程序来执 行 2. logrotate 配置 相关文件 计划任务:/etc/c ...
分类:其他好文   时间:2020-12-30 11:21:45    阅读次数:0
[nginx] nginx emerg invalid number of arguments in "root" directive
系统 windows 命令 nginx -t 报错 nginx emerg invalid number of arguments in "root" directive.... 原因 root行配置最后没写分号导致,加上分号即可解决 ...
分类:其他好文   时间:2020-12-29 11:29:07    阅读次数:0
(转)SQL 查询效率优化原则
1、对查询进行优化,应尽可能避免全表扫描 首先应考虑在 where 及 order by 涉及的列上建立索引。下面我们来以一个表中177条数据比较一下,全表扫描与建立索引之后性能的一个比较. 1.1 全表查询 1.2 建立索引查询 1.3 结论 从这两种方式查询数据库结果看,建立索引之后查询速度提高 ...
分类:数据库   时间:2020-12-29 11:17:20    阅读次数:0
562. Longest Line of Consecutive One in Matrix
package LeetCode_562 /** * 562. Longest Line of Consecutive One in Matrix * (Prime) *Given a 01 matrix M, find the longest line of consecutive one in ...
分类:其他好文   时间:2020-12-28 11:58:19    阅读次数:0
Unknown custom element: <el-table-column> - did you register the component correctly? For recursive components, make sure to provide the "name" option. found in
在使用element-ui导入表格时提示此报错是因为还差一个el-table-column组件,导入此组件即可 ...
分类:其他好文   时间:2020-12-28 11:20:11    阅读次数:0
5022条   上一页 1 ... 7 8 9 10 11 ... 503 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!