`
文章列表
 IKAnalyzer3.2.8
    hibernate-search-3.4.1.Final api create by 飞天奔月 chm    
hibernate-search-3.2.0.Final-javadoc chm    
  背景: 目前官方商城使用了 maven和ant 来项目build工具,maven 主要是用来管理jar依赖以及project依赖关系,ant用来精细化发布(单独发布css,单独js,css,js压缩等等)   开发过程中的缺点: 仅仅修改了一个css之类的静态资源,需要点击ant ...
自从使用了,eclipse indigo 3.7.1 ,快半年了    就一直存在着  copy 过来的代码,paste 时,不能自动import 包   首先检查了  (menu: Windows - Preferences
以前使用cvs ,我习惯 自定义 commit 快捷键 alt+w   最近换上了 svn, 我同样设置了 快捷键 alt+w,发现没有效果 (不是冲突)   解决方法:   打开window–preferences–General–Keys为svn的添加,更新,检出,提交等加上快捷键,保存。 然后测试发现不起作用,   研究后发现解决方案: 打开windows–Customize Perspective(自定义视图)–Command Groups Availability,找到SVN,打勾保存,再测svn快捷键,起作用了!!
  故事:我有两台服务器  122,123,搭建了tomcat 集群,由于开发环境和正式环境不一样的配置,我需要在正式环境服务器上留下正式环境的配置文件,发布的时候,使用这些预留的配置文件覆盖即可 由于两台服务器使用的项目配置文件是一样的,我不想两台服务器上都去维护这些预留的配置文件 在 122的服务器上我建个webapps/backupConfig文件夹,让 123共享到   操作系统:Ubuntu,122(nfs服务端),123(nfs客户端) 文中提到的ip地址仅供参考   步骤:   1.122
  1.原始做法: spring quartz配置文件,一个调度配置了两个bean,对于查找需要多查询一次 如下 <!-- ==================== 定时同步价格信息 ========================= --> <bean id="priceTaskTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean"> <property name="jobDetail" ref=" ...
  Returns the value of a request parameter as a String, or null if the parameter does not exist. Request parameters are extra information sent with the request. For HTTP servlets, parameters are contained in the query string or posted form data. You should only use this method when you are sur ...
excel 截取字符串,去除最后3位数字   可以MID和 LEN函数混合使用   =MID(C2,1,LEN(C2)-3)    
  1.原始做法: spring xml配置文件,参数直接混合配置 如下   <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="org.postgresql.Driver" /> <property name="url" ...
今天客服说 好多页面 出现这样的问题   Request Entity Too Large The requested resource /product/453974-600/detail.htm does not allow request data with GET requests, or the amount of data provided in the request exceeds the capacity limit.<!--[if !supportLineBreakNewLine]--><!--[endif]-->   ...
背景: 原先开发的时候,需要 ant运行 copyResources target(deploy depend 该 target ) 来进行 native2ascii  开发过程中有时候会遗漏这个步骤,会发现 缺少相关 properties 文件 并且,原来的messages文件夹 是独立于src/main/resources 之外的,独立于maven管理系统,不利于tomcat/jetty插件的集成 解决: 将message文件夹移动到src/main/resources 目录 引入native2ascii-maven-plugin 插件 ,在 maven  生命周期( ...
今天发现库存数量变成-1,研究如何通过jpa 给列加约束   使用columnDefinition  属性    /**  * Gets the 商品可用量.  *   * @return the 商品可用量  */ @Column(name = "AVAILABLE_QTY",nullable = false,columnDefinition = "int check(available_qty >=0)") public Integer getAvailableQty(){  return availableQty; }       ...
 commons-collections-3.2.1 apidocs,chm,create by 飞天奔月
Global site tag (gtag.js) - Google Analytics