会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
霓裳梦竹
Zero to hero ~
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
13
14
15
16
17
18
19
20
21
下一页
2016年9月19日
No goals have been specified for this build
摘要: 在pom.xml文件中build后面加上<defaultGoal>compile</defaultGoal>
阅读全文
posted @ 2016-09-19 08:29 霓裳梦竹
阅读(193)
评论(0)
推荐(0)
2016年9月18日
[AJAX系列]$.post(url,[data],[fn],[type])
摘要: 概述: 通过远程HTTP POST请求载入信息 参数: url:发送请求地址 data:待发送Key/value值 callback:发送成功时回调函数 type:返回内容格式 xml html script json text _default 示例: 描述: 请求test.php页面 忽略返回值
阅读全文
posted @ 2016-09-18 15:10 霓裳梦竹
阅读(1363)
评论(0)
推荐(0)
[AJAX系列]$.get(url,[data],[fn],[type])
摘要: $.get(url,[data],[fn],[type]) 概述 通过远程HTTP GET请求载入信息 参数 url:待载入页眉的URL地址 data:待发送key/value参数 callback:载入成功时回调函数 type:返回内容格式xml html script json text _de
阅读全文
posted @ 2016-09-18 14:54 霓裳梦竹
阅读(469)
评论(0)
推荐(0)
2016年9月17日
[AJAX系列]onreadystatechange事件
摘要: onreadystatechange事件: 当请求被发送到服务器时,我们需要执行一些基于响应的任务 每当readyState改变时,就会触发onreadystatechange事件 readyState属性存有XMLHttpRequest的状态信息 XMLHttpRequest对象的三个重要的属性:
阅读全文
posted @ 2016-09-17 17:23 霓裳梦竹
阅读(2241)
评论(0)
推荐(0)
[AJAX系列]XMLHttpResponse对象
摘要: 1 2 3 4 5 Response 6 7 43 44 My cd Collection: 45 46 GET MY CD COLLECTION 47 48 1 2 3 Empire Burlesque 4 Bob Dylan 5 USA 6 Colum...
阅读全文
posted @ 2016-09-17 17:09 霓裳梦竹
阅读(3425)
评论(0)
推荐(0)
[AJAX系列]XMLHttpRequest请求
摘要: 1 2 3 4 5 修改内容 6 16 61 62 63 64 使用Ajax修改该文本的内容 65 66 修改内容 67 68
阅读全文
posted @ 2016-09-17 16:55 霓裳梦竹
阅读(303)
评论(0)
推荐(0)
[Ajax系列]Ajax介绍
摘要: Ajax简介: Ajax是一种在无需重新加载整个网页的情况下,能够更新部分网页的技术。 What ? AJAX=异步JavaScript和XML AJAX是一种用于创建快读动态网页的技术 通过在后台语服务器进行少量数据交换,AJAX可以使网页实现异步刷新,这意味着可以在不重新加载整个网页的情况下对网
阅读全文
posted @ 2016-09-17 16:34 霓裳梦竹
阅读(220)
评论(0)
推荐(0)
2016年9月14日
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:2.4:create (default-cli) on project standalone-pom: Unable to parse configuration of 3: mojo org.apache.maven.plugins:
摘要: 问题: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:2.4:create (default-cli) on project standalone-pom: Unable to parse
阅读全文
posted @ 2016-09-14 15:52 霓裳梦竹
阅读(3302)
评论(0)
推荐(1)
Failed to execute goal org.codehaus.cargo:cargo-maven2-plugin:1.2.3:run (default-cli) on project Maven_WebTest: Execution default-cli of goal org.codehaus.cargo:cargo-maven2-plugin:1.2.3:run failed: C
摘要: 解决办法:修改一下版本号 <groupId>org.codehaus.cargo</groupId> <artifactId>cargo-maven2-plugin</artifactId> <version>1.4.12</version> <!--原本是使用1.2.3-->
阅读全文
posted @ 2016-09-14 15:36 霓裳梦竹
阅读(4255)
评论(1)
推荐(1)
The superclass javax.servlet.http.HttpServlet was not found on the Java Build Path。
摘要: 项目上右键-->Build Path-->Configuration Build Path -->Add Library -->Server Runtime 选择tomcat
阅读全文
posted @ 2016-09-14 14:13 霓裳梦竹
阅读(183)
评论(0)
推荐(0)
-Dmaven.multiModuleProjectDirectory system propery is not set. Check $M2_HOME environment variable and mvn script match.
摘要: 一, eclipse中使用maven插件的时候,运行run as maven build的时候报错 -Dmaven.multiModuleProjectDirectory system propery is not set. Check $M2_HOME environment variable a
阅读全文
posted @ 2016-09-14 13:58 霓裳梦竹
阅读(223)
评论(0)
推荐(0)
各数据库分页
摘要: MySql: select * from TABLE_NAME limit A, B; 解释: A,查询起点 B,你需要的行数 Oracle: --1:无ORDER BY排序的写法。(效率最高)--(经过测试,此方法成本最低,只嵌套一层,速度最快!即使查询的数据量再大,也几乎不受影响,速度依然!)
阅读全文
posted @ 2016-09-14 10:22 霓裳梦竹
阅读(754)
评论(0)
推荐(0)
2016年9月9日
工作框架各种使用整理 --图片上传和下载
摘要: 1 2 3 4 5 --> 6 7 8 9 ...
阅读全文
posted @ 2016-09-09 16:45 霓裳梦竹
阅读(503)
评论(0)
推荐(0)
工作框架各种使用整理 -- 联动
摘要: 1 2 3 4 5 6 7 8 9 10 11 ...
阅读全文
posted @ 2016-09-09 15:58 霓裳梦竹
阅读(480)
评论(5)
推荐(0)
2016年9月5日
工作框架各种使用整理 -- 枚举类型下拉选择
摘要: ...
阅读全文
posted @ 2016-09-05 14:30 霓裳梦竹
阅读(334)
评论(0)
推荐(0)
2016年8月25日
工作框架各种使用整理 -- 数据格式化
摘要: 1、金额格式化
阅读全文
posted @ 2016-08-25 11:32 霓裳梦竹
阅读(230)
评论(0)
推荐(0)
工作框架各种使用整理 -- 上传图片文件等
摘要: 1 2 3 4 5 6 7 8 12 13 14 15 16 17 18 19 20 24 1 2
阅读全文
posted @ 2016-08-25 10:49 霓裳梦竹
阅读(538)
评论(0)
推荐(0)
2016年8月23日
工作框架各种使用整理---使用Cache
摘要: ...
阅读全文
posted @ 2016-08-23 11:25 霓裳梦竹
阅读(314)
评论(0)
推荐(0)
2016年8月22日
Spring学习进阶(四) Spring JDBC
摘要: Spring JDBC是Spring所提供的持久层技术。主要目的是降低使用JDBC API的门槛,以一种更直接,更简洁的方式使用JDBC API。在Spring JDBC里用户仅需要做哪些比不可少的事,而将资源获取,Statement创建,异常处理,资源释放等繁杂而乏味的工作交交给Spring.一、
阅读全文
posted @ 2016-08-22 08:30 霓裳梦竹
阅读(854)
评论(0)
推荐(0)
2016年8月17日
工作框架各种使用整理 -- 设置用户访问权限
摘要: 1、设置用户组 2、设置用户账号和所属组 3、设置权限 3、设置组权限
阅读全文
posted @ 2016-08-17 13:38 霓裳梦竹
阅读(513)
评论(0)
推荐(0)
上一页
1
···
13
14
15
16
17
18
19
20
21
下一页
公告