- 博客(39)
- 资源 (2)
- 收藏
- 关注
原创 SSL certificate problem: unable to get local issuer certificate
Git clone的时候遇到以下exception:git config --global http.sslVerify falsegit bash window 运行上述命令解决问题
2021-03-25 13:59:26
179
转载 How to share Windows drives with a user without password?
https://forums.docker.com/t/how-to-share-windows-drives-with-a-user-without-password/22933/43879Create a new user(Computer Management → System Tools → Local Users and Groups → Users → Create new user), e.g. “DockerHost”. Give it a password. Mark ...
2021-03-22 10:00:23
470
原创 IntelliJ: Command Line is too Long. Shorten command line for…
When I try to run my app, IntelliJ has just started to tell me"Command Line is too Long. Shorten command line for my_app or also for Application default configuration."To resolve this issue, you can open the confiration window and under the Shorten .
2021-01-29 18:02:43
185
原创 获取html页面中name的input对话框的值
<!DOCTYPE html><html><script language="javascript">function getValue(){var list = document.getElementsByTagName("input");var inputList = document.getElementsByName("lastname");for(i=0;i<inputList.length;i++){alert(inputList[
2021-01-25 14:53:04
803
原创 解决$ git clone fatal: Authentication failed
git clone$ git clone https://XXXXXCloning into 'XXXX'...warning: ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ SECURITY WARNING ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉwarning: Γöé TLS certificate verification has been disabled! Γöéwar.
2021-01-05 09:43:48
11721
1
原创 Chart JS HTML legend & typescript
最近新接了个web项目,用的是typscript,angular,oracle,protractor等技术。再生成chart的时候引入了chart.js的类库。它实现的功能比较方便。chartjs官网:https://www.chartjs.org/下面介绍几种chartjs生成legend的方式:方式1:options --> legend 属性,在这里可以指定labels是属性 来构建显示内容var chart = new Chart(ctx, { type: 'b.
2020-12-29 11:25:21
433
原创 引入js顺序
必须 ext-base.js 一定要在ext-all.js之前, 不然咋调也不好使!NND书上也没说害我调了半天@_@想骂人 test.js must invoke after all above core ext js are invoked. else will not work. ext-lang-
2009-08-06 16:51:00
908
原创 extJS在tomcat下部署看extjs文档
把ext 2.2 解压缩到$tomcat_home/webapps/下 帮助文档http://localhost:8080/ext2/docs/index.html 实例http://localhost:8080/ext2/examples/samples.html
2009-08-06 11:01:00
3283
转载 [struts]Validator对一个集合(list,数组)进行较验
原帖地址:http://www.coderanch.com/t/55846/Struts/Using-attribute-indexedListProperty-field-tag Hi ranchers, Iam using Validator framework,in one of the form,I have a List which contains Lastn
2009-07-29 09:54:00
1673
原创 ibatis中传入数组的解决方案(转载)
版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明http://feipingzhao.blogbus.com/logs/33394105.htmlIts very simple, however iBATIS documentation doesnot state this. Suppose you need to issue a query w
2009-07-27 19:48:00
975
转载 ExtJS 自带API文档如何打开?
把文档直接解压缩到tomcat的webapp下面, 启动以后browse直接输入: http://localhost:8080/ext2/docs/index.html
2009-07-22 10:22:00
1172
1
原创 Cannot find bean: "test" in any scope
javax.servlet.jsp.JspException: ServletException in /WEB-INF/jsp/admin/SystemProfile.jsp: Cannot find bean: "test" in any scope at org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTa
2009-07-21 16:59:00
833
原创 可以帮助你理解iBatis中的parameterMap(活学活用)
在以前的一篇文中介绍到,当用parameterMap作为ibatis映射输入参数时,要在ibatis的配置文件中 作相应的声明。但我们也可以不在ibatis映射文件中作声明,应用方法如下: ibatis映射文件sqlmap.xml中: UPDATE TAB SET EDITION=#ID# WHERE USERID=#USERID# 在我们要调
2009-07-19 14:02:00
3256
原创 Incorrect inline parameter map format (missmatched name=value pairs)
错误原因:_sqlMap.xml里 update eob_system_profile set VALUE="#value" where KEY="#key" 里面的#value应该为#value#,#key为#key#
2009-07-19 14:01:00
5033
转载 [struts]Struts1.1的页面校验
Struts作为一个不停发展的开源项目,在页面校验这一块采用了Jakarta的Commons项目的Validate,结合Struts的MVC体系,用起来确实不错。建议校验这部分在完成jsp后加入。原理:Struts的页面校验分两种方法,一种是前台生成Javascript,一种是后台class。 而出错信息对应的也有两种显示方法,一种是弹出消息框,一种是在原页面显示。
2009-07-17 15:58:00
723
转载 表单语法介绍
form标签【标签格式】...1.action属性设定这个表单在填写完成以后要送给Server上的哪一个程序处理,有可能是CGI程序、ASP程序、PHP程序或是EXE程序。例如:2.method属性设定传送数据的方式,一个是GET,它的运作方式是当用户填完数据送出后,浏览器会将所填入的变量名称及数据加在一个属性所指定的URL之后,依HTTP将数据传送
2009-07-13 17:27:00
795
原创 deployweb项目前最基本的事情
1.oc4j起来了吗2.项目编译成功么, 有没有错误?3.datasource有没有建立? 刚才发生几个错误,就是由于以上问题造成的.
2009-07-13 11:23:00
354
原创 [struts1]学习笔记1 简单搭建基础
[struts1]学习笔记1以下根据软件开发流程组织.1.引入需要的jar解压缩struts-1.2.9-bin.zip引入包内lib/下所有的jar文件. webapp下是struts提供的例子很好可以学习.下面有一个空白的struts-blank.war里面有现成的格式和模板可以做.2.修改web.xml文件,加入以下配置信息 action or
2009-07-08 18:21:00
552
原创 Spring学习笔记2
依赖注入1.属性通过依赖注入, 必须在bean中提供set方法2.接口和bean不能在同一个包中3.声明bean方法A. 最常用的 class="com.bhr.strutsdemo.spring.test.impl.PersonServiceBean" scope="prototype" lazy-init="default" destroy-m
2009-07-07 14:57:00
432
转载 Spring学习笔记
1. 2个概念 IOC, DI2. 使用spring好处:A . 之一能实现下面3个层次的解藕(相对独立) Controller --- Service --- DAOB. 提供很多服务对企业有好处.比如事务管理服务可以自动帮助我们进行事务管理 例如hibernate里面transaction的操作(e.g commit)就不需要写了, 能使代码变得小.C.
2009-07-06 16:25:00
433
原创 [MySQL]MySQL 5.1参考手册
中文参考手册, 里面包括了常见语法的书写http://dev.mysql.com/doc/refman/5.1/zh/sql-syntax.html#show-tables
2009-07-03 17:33:00
866
转载 [MySQL]MySQL Server 5.x – 安装及配置
环境:Window XP Professional + SP2, MySQL Server 5.0 下载软件:MySQL Server 5.0.18 http://dev.mysql.com/downloads/mysql/5.0.html下载MySQL Server,并安装在本地机器上。
2009-07-03 17:31:00
1279
1
原创 [Hibernate]看传智博客人学习笔记1
1. hibernate无法管理有参数的bean构造方法,必须有一个默认的构造方法2. 每一个bean最好都有一个id,id 代表主键3. bean类不要设置能final , 以便继承扩展4. SessionFactory只应做一次连接资源, 所以最好做一个工具类初始化这个操作保证只执行一次. 1.hibernate必须有一个hibernate.cfg.xml 和 *.hbm.
2009-07-03 17:28:00
610
转载 JSP 标准作用域(4个)
大概流程是这样的,我们访问04-01/index.jsp的时候,分别对pageContext, request, session,application四个作用域中的变量进行累加。(当然先判断这个变量是不是存在,如果变量不存在,则要把变量初始化成1。)计算完成后就从index.jsp执行forward跳转到test.jsp。在test.jsp里再进行一次累加,然后显示出这四个
2009-07-02 15:26:00
607
转载 myeclipse更改快捷键
MyEclipse安装完成之后,有一个很常用的快捷键Content Assist(即代码提示)被默认为Ctrl + Space。这会使得我们使用中文操作系统的计算机用起来很不方便,因为我们平时打字必用的切换打字法的快捷键,恰恰就是这个!当然,你可以直接在Windows =>General => Keys去替换掉这个快捷键,不过可能还会有其他快捷键与我们的中文操作系统有冲突。这里介绍一个一劳
2009-07-02 14:09:00
1879
转载 myeclipse自动部署
一、在Myeclipse软件中部署1、 在Myeclipse中,创建好工程后,在Myeclipse菜单栏中选择 Windows -> Preferences -> Myeclipse ->Tomcat5,选择"Enable";Tomact Home Directory要选择你机器上Tomcat所安装的目录。然后,再Windows -> Preferences ->
2009-07-02 13:42:00
2859
原创 Struts我终于入门了-用jdeveloper 10g和oc4j开发struts实例
本文使用的例子是struts in action中的例子,其中用jdeveloper配置信息为原创。1.在jdeveloper创建一个project。这里命名为project1.步骤就不说明了2.创建ActionForm. ActionForm 是一个JavaBean ,它扩展了 org.apache.struts.ActionForm 类。你就记住他是一个类似于entity类,用
2009-07-01 00:53:00
658
转载 Configuring JDeveloper 11g to use Struts 2
原文地址:http://203.208.33.132/search?q=cache:hSQNtuQxaqEJ:theblasfrompas.blogspot.com/2009/04/configuring-jdeveloper-11g-to-use.html+jdeveloper+struts2&cd=2&hl=zh-CN&ct=clnk&gl=cn&st_usg=ALhdy297q-NfZGbk
2009-06-30 14:02:00
1400
转载 菜鸟学习什么是structs
原文地址: http://tech.ccidnet.com/art/1078/20040804/138284_1.html 一、 什么是Struts框架(Framework)是可重用的,半完成的应用程序,可以用来产生专门的定制程序。您只要细心地研究真实的应用程序,就会发现程序大致上由两类性质不同的组件组成,一类与程序要处理的具体事务密切相关,我们不妨把它们
2009-06-29 16:25:00
1074
转载 Rapid Struts Development in JDeveloper
Please refer http://www.oracle.com/technology/oramag/oracle/04-sep/o54jdev.html Use Oracle JDeveloper 10g to build Struts applications.Would you like to avoid having to create the sam
2009-06-29 16:06:00
1933
原创 tld 文件是干什么用的啊?
扩展名为tld的文件是存放标签名字和类的映射用的,比如struts的标签库中就有这种文件。标签库,他把页面标签和后面的java类影射起来.减少了页面中的代码。使页面清晰。其实标签最后还是被解释成后台的Java代码。 原理是,在用户在jsp页面中使用标签时,系统首先会先到xml文件中的标签中的《taglib-uri》和《taglib-location》这两对标签找到相对应的扩展名
2009-06-29 11:12:00
6998
1
原创 [Exception]SEVERE: Failed to set the internal configuration of the OC4J JMS Server with: XMLJMSServerConfig
This is the error Im receiving starting the OC4J server before running jsp file in jdeveloper...May 4, 2007 1:01:06 PM com.evermind.server.jms.JMSMessages logINFO: JMSServer[]: OC4J JMS server recove
2009-06-26 13:31:00
2631
原创 At least one valid code-source or import-shared-library element is required for shared-library "global.libraries" in /embedded-
Im new to jdeveloper and encounter a problemwhich i cant run and display my jsp page.This are the errors prompt out when i click on run the project:[waiting for the server to complete its i
2009-06-26 13:20:00
4013
转载 JDeveloper JSP files must reside in the server root directory or a subdirectory
“Error: JSP files must reside in the server root directory or a subdirectory”- Jdeveloper ErrorHow often have you struggled to specify a diff
2009-06-25 11:33:00
772
原创 [JDeveloper]使用指南
http://www.oracle.com/technology/global/cn/obe/obe1013jdev/index.htm看哪里不如看官方网站. 整理几个比较有用的:1. 打开sql worksheet:Tools-->Sql worksheet.
2009-06-24 15:52:00
1495
1
原创 oracle J2EE server部署比较有用的连接
http://www.oracle.com/technology/global/cn/pub/articles/masterj2ee/j2ee_wk12.html
2009-06-23 17:06:00
578
转载 OC4J的使用[转自http://www.suneca.com]
oracleApplicationServer是Oracle公司是J2EE应用服务器领域的一个拳头产品,也许在国内使用该应用服务器的企业还不多,所以很多程序员对OracleApplication Server还是相对比较陌生。之前做的应用系统主要是针对广东电信,广东电信大部分应用服务器都是采用IBMWebSphere ApplicationServer,有些大
2009-06-23 16:56:00
1290
原创 使用instanceof关键字判断实例的类型
Java的instance关键字可以实现"运行时类型识别"(Run-time type identification, RTTI),也就是说可以通过instanceof关键字判断某个对象是否时没个类的实例,例如:class ClassA {ClassA() {}}class ClassB {ClassB() {}}public class MyInstanceOf {public static v
2005-12-19 10:26:00
1057
helloworld.war
2009-06-27
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人