入门客AI创业平台(我带你入门,你带我飞行)
博客笔记
10
2018-04
LeetCode两数之和 2018-04-10
给定一个整数数列,找出其中和为特定值的那两个数。 class Solution { public int[] twoSum(int[] nums, int target) { TreeMap map=new TreeMap();//hashmap都可
14
2017-11
tp5的一些基本配置与规则 2017-11-14
Tp框架的基本配置文件作用: Command.php => 控制台配置文件 Common.php => 项目的公共文件 Config.php => 应用的配置文件 database.php => 数据库配置文件 route.php
01
2018-02
tp5 Validate验证规则 2018-02-01
系统内置的验证规则如下: 1格式验证类 require   验证某个字段必须,例如:"name"=>"require" number 或者 integer   验证某个字段的值是否为数
06
2018-02
tp5伪静态设置 2018-02-06
nginx location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } } apache Options +FollowSymlinks -Multiviews RewriteEng
17
2013-08
java命名大小写规范... 2013-08-17
maven/Java/web/bootstrap/dataTable/app开发QQ群:566862629。希望更多人一起帮助我学习。 1.常量:都用大写。如:public static final String DBDRIVER="....."; 2.类的名
22
2017-05
PL sql概述+代码编写规则+标识符命名规则+大小写规则 2017-05-22
代码编写规则 1 标识符命名规则 标识符必须以字符开始,长度不大于30个字符 建议 定义变量:v_变量名 定义常量:c_常量名 定义游标:_cursor 定义异
10
2014-01
spring组件扫描<context:component-scan/>使用详解 2014-01-10
好文章,原文地址:http://blog.sina.com.cn/s/blog_57769b7b0100tt5x.html 关于spring自动检测组件的使用方式网上太多了,而且也不是我记录的重点,我想说下
30
2016-11
spring <content:component-scan>使用说明 2016-11-30
在xml配置了这个标签后,spring可以自动去扫描base-package下面或者子包下面的java文件,如果扫描到有 @Component @Controller @Service等这些注解的类,则把这些
17
2012-02
context:exclude-filter 与 context:include-filter 2012-02-17
1 在主容器中(applicationContext.xml),将Controller的注解打消掉 2 而在springMVC配置文件中将Service注解给去掉 因为spring的context是父子容器
27
2016-06
<context:include-filter>和<context:exclude-filter>区别 2016-06-27
可以搜索@Controller标签 搜索不到@Controller标签 阅读更多