1. 特性验证。//[Required]//[StringLength(5,MinimumLength=2)]//[Range(typeof(string),"a","z")]//[StringLength(5, MinimumLength = 2)]//[Range(3, 20)]//Output...
分类:
Web程序 时间:
2014-12-02 13:30:06
阅读次数:
239
用Xcode6 或 Application Loader发布时总是提示“Missing required icon file.The bundle does not contain an app icon for iPhone / iPod Touch of exactly '57x57' pixe...
分类:
移动开发 时间:
2014-12-02 11:45:30
阅读次数:
247
Understanding Joins1.Joins combine tables horizontally (side by side) by combining rows. The tables being joined are not required to have the same num...
分类:
数据库 时间:
2014-12-01 20:49:54
阅读次数:
439
Given an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]return3,and[3,4,-1,1]return2.Your algorithm should ru...
分类:
其他好文 时间:
2014-12-01 17:31:54
阅读次数:
145
Install Required Packages apt-get update & upgrade
apt-get install mysql-server nginx php5-cli php5-cgi spawn-fcgi nginx php5-cli php5-cgi
spawn-fcgi php5-gd php5-mysql 2 Create Di...
分类:
数据库 时间:
2014-12-01 16:25:49
阅读次数:
324
在更新完成android sdk后创建了项目,然后选择的sdk版本是android 21,系统自动创建了v7的资源项目,然后本项目引用了该v7.
可是问题来了,v7资源项目里的res资源属性报错,no found missing!!!!WTF
v7也是21版本的,结果res里面生成的values-large-v14里的有个
name="Theme.Base.AppCompat....
分类:
移动开发 时间:
2014-12-01 11:24:45
阅读次数:
316
特性控制 数据验证(MVC)与数据库映射 Key 主键 Required 指定列非空 DisplayFormat //显示格式 MaxLength //最大长度 Display 指定本地显示字符串 DatabaseGenerated 指定主键列创建的模式(自动增长...
分类:
其他好文 时间:
2014-12-01 00:37:26
阅读次数:
213
Maven在用插件动态打war包的时候出现这样的错误:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.5:war (default-war) on project MavenProj1: Error assembling WAR: webxml attribute is required (o...
分类:
其他好文 时间:
2014-11-30 14:12:20
阅读次数:
268
Maven里面的Jar包经常出现Missing的情况,无外乎几种情况:
1、私服里面没有相应的版本号的Jar包或者Jar包没写版本号
2、Jar包引错了,相应的依赖关系也就错了
3、引入了依赖的Jar包,没被管理起来
第一二个问题解决起来挺简单的,第三个问题对于不理解Maven的还需要解决一番。
其实第三个问题就存在与Maven的dependenc...
分类:
编程语言 时间:
2014-11-30 07:07:35
阅读次数:
159
Given two wordsword1andword2, find the minimum number of steps required to convertword1toword2. (each operation is counted as 1 step.)You have the fol...
分类:
其他好文 时间:
2014-11-29 11:40:36
阅读次数:
255