摘要:
修改server.xml,在Host标签下加入以下配置 第一个Context是为了ip+端口直接指向FileManger这个项目。 path代表的是URL入口,例如第一个代表localhost:8080,第二个则代表localhost:8080/FileManger。 docBase是物理路径,可以 阅读全文
摘要:
1.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。2.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如:select id from t where num is null可以在num 阅读全文