- 浏览: 25183 次
- 性别:
- 来自: 广州
最新评论
文章列表
错误一
FATAL: Unable to initialize command context.
Build step 'Deploy WAR/EAR to WildFly' marked build as failure
Finished: FAILURE
解决方法:
将wildfly所在的位置lib目录下的所有文件复制到jenkins目录下面,默认目录如下,其它的请根据自己的目录进行复制
cp /var/lib/jenkins/plugins/wildfly-deployer/WEB-INF/lib/* /var/cache/jenkins/war/WEB-INF/lib
...
一 软件下载
Tomcat 下载 https://tomcat.apache.org/
maven 下载 http://maven.apache.org/download.cgi
二 maven的安装
1.解压nexus-2.11.4-01-bundle.tar
2.在Tomcat目录webapps下,新建Nexus,将maven解压后的目录nexus-2.11.4-01和sonatype-work这两个文件夹全部复制到webapps Nexus下
3.把nexus-2.12.0-01\lib文件夹下面的除了javax.servlet*.jar及jetty*jar的所有jar包文件 ...
NOPI导出 Excel在“.xlsx”的部份内容有问题。你要我们尽可能恢复吗?
MemoryStream ms = new MemoryStream();
workbook.Write(ms);
HttpResponseMessage response = new HttpResponseMessage();
response.StatusCode = HttpStatusCode.OK;
...
angular 使用showModel跳转时 再跳回原本页面找不到该值的form
需要在该目录的首页添加get-form值即可
<div ng-switch-when="List" get-form="Name">
<list>List</list>
</div>
在IIS里面启动报500的错误,但在vs里面启动却没有任何问题。
在IIS的应用程序池里面 找到你的项目 将.net Framework版本更改为你项目的版本即可。
我之前的报错是因为我的项目是采用了4.0 在IIS上使用了2.0的版本。
oracel编写存储函数
- 博客分类:
- oracle
DECLARE
vn_commit_count NUMBER (4);
vn_count NUMBER (4);
CURSOR cur_get_id
IS
SELECT id from table
BEGIN
vn_count := 0;
vn_commit_count := 5000;
FOR c_get_id IN cur_get_id
LOOP
BEGIN
UPDATE table set column = ''
whe ...
CREATE INDEX XX.XX ON ETRAVEL.table(column) TABLESPACE KKK;
//返回小时数
function diffDate(orderStartTime){
var nowDate = new Date();
var startTime = new Date(orderStartTime);
var s1 = nowDate.getTime()
var s2 = startTime.getTime();
var total = (s2 - s1)/1000;
var day = parseInt(total / (24*60*60));//计算整数天数
var afterDay = total - day*24*60*60;//取得算出天数后 ...
Oracle根据条件统计数据
- 博客分类:
- oracle
Oracle根据条件选择数据进行统计,当某字段条件等于One或者等于Two就自动加1,
1可以选择表t1的为数字的字段
select t1.ord,sum(case when t1.ttype='One' or t1.ttype = 'Two' then 1 end) adultNum
from Table1 t1 group by t1.ord
function addDate(dateStr,diffDay){ var dateTime = (new Date(dateStr)).getTime(); var diffTimeLong = dateTime + (diffDay)*24*3600*1000; var diffTime = new Date(diffTimeLong); var m = (diffTime.getMonth()+1)<10?"0"+(diffTime.getMonth()+1):(diffTime.getMonth()+1); var d = diffTime.ge ...
比较两字段是否相同以指定字符输出
decode(字段1,字段2,'相同输出字符','不同输出字符') as showstring
oracle时间相减 得到小时
round((cast(firstTime AS DATE) - cast(secondTime AS DATE)) * 24) as diffTime
ligerui设置默认选中项
- 博客分类:
- ligerui
设置ligerui下的select控件默认选中项
var selectid= $("#id").ligerGetComboBoxManager();$("#id").val("1");selectid.setValue($("#selectid").val());selectid.setText($("#selectid").find(":selected").text());
public static void main(String[] args) { // 第一种:List每remove掉一个元素以后, // 后面的元素都会向前移动,此时如果执行i=i+1, // 则刚刚移过来的元素没有被读取。 Entity sbo1 = new Entity (); sbo1.setGifId("1"); sbo1.setGiftName("kell"); sbo1.setGiftAmout(11); sbo1.setGi ...
本方法使用了ligerui控件 //添加联系人 function openDetailInfo() { dialog = $.ligerDialog.open({ height : 600, width : 900, title : '联系人', url : '', showMax : false, ...