`
jlcon
  • 浏览: 172242 次
  • 性别: Icon_minigender_1
  • 来自: 重庆
社区版块
存档分类
最新评论
文章列表
  import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "usernam ...

表单验证标记说明

    博客分类:
  • Java
@AssertTrue   //用于boolean字段,该字段只能为true    @AssertFalse //该字段的值只能为false    @CreditCardNumber //对信用卡号进行一个大致的验证    @DecimalMax //只能小于或等于该值   
OpenSSL 1、生成CA证书:   openssl req -new -x509 -newkey rsa:1024 -keyout ca.key.pem -out ca.cer -config openssl.cfg -outform PEM -subj "/C=CN/ST=ChongQing/L=ChongQing/O=yiji/OU=yiji/CN=*.yiji.com"   Keytool 2、生成KeyPair keytool -genkey -alias yiji -validity 365 -keyalg RSA -keysize ...
第一个参数代表$1,第二个参数代表$2,以此类推,参数数量的总数存在$#中,上面的例子显示了怎么改变脚本,如果参数少于或者多余2个来打印出一条消息……     shell 编程中使用到得if语句内判断参数   –b 当file存在并且是块文件时返回真   -c 当file存在并且是字符文件时返回真   -d 当pathname存在并且是一个目录时返回真   -e 当pathname指定的文件或目录存在时返回真   -f 当file存在并且是正规文件时返回真     -g 当由pathname指定的文件或目录存在并且设置了SGID位时返回为真   -h 当file存在并且是符 ...

Spring 命名空间

    博客分类:
  • Java
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" default-autowire="byNam ...
<c3p0-config><default-config><!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3 --><property name="acquireIncrement">3</property><!--定义在从数据库获取新连接失败后重复尝试的次数。Default: 30 --><property name="acquireRetryAttempts">30</property><!--两次连接中间隔时间,单位 ...
Tomcat 6 public static void main(String[] args) throws Exception { String weppAppHome = args[0]; Integer port = Integer.valueOf(args[1]); Server server = new Server(port); WebAppContext webapp = new WebAppContext(); webapp.setContextPath("/myapp"); webapp.setCompac ...
windows-> preferences->java->Editor->Mark Occurences  
javax.xml.ws.soap.SOAPFaultException: Fault occurred while processing. at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:146) at $Proxy63.merchantRegister(Unknown Source) at com.yjf.yjh.test.account.IYijiServiceTest.merchantRegisterTest(IYijiServiceTest.java:72) at sun. ...
MarshalByRefObject TextReader StreamReader StringReader TextWriter StreamWriter StringWriter HttpWriter HtmlTextWriter Stream FileStream MemoryStream UnManagedMemoryStream PipeStream DeflateStream GZipStream NetworkStream PrintQueueStream Buff ...
列头填充模式:AutoSizeColumnsMode 行标隐藏:RowHeadersVisible 选择模式:SelectionMode 禁止用户添加行:AllowUserToAddRows 为false
1、设置Eclipse类颜色 选项 -> Java -> Syntax Coloring Element.Java.Classes  色调 129,饱和度 145,亮度103;红43,绿146,蓝 175 2、设置VS(工具 -> 选项 -> 字体和颜色) 2.1 字体 Courier New 2.2 关键字 褐紫红色 加粗 2.3 字符串 深南色  

动态GridPanel

    博客分类:
  • JS
Ext.override(Ext.data.Store,{ addField: function(field){ if(typeof field == 'string'){ field = {name: field}; } this.recordType.prototype.fields.replace(field); if(typeof field.defaultValue != 'un ...
变量 描述 示例 cursor 将编辑器的光标放在这个位置。 N/A date 插入当前日期。 Oct 20, 2009
response.setContentType("application/octet-stream; charset=ISO8859-1"); response.addHeader("Content-Disposition", "attachment;filename=abc.sql"); response.addHeader("Content-Length",xxxx);  
Global site tag (gtag.js) - Google Analytics