- 浏览: 25785 次
- 性别:
- 来自: 上海
最新评论
文章列表
1.js&jsp
$("#excel").click(function() {
$("#form1").attr("action","<%=contextPath%>/admin/trainning/listtrainningtoexcel");
$("#form1").submit();
});
<button style="height:28px;" id="excel" class=& ...
1.获取前端request context
@RequestMapping("/search/data")
public String search(PagingVO page, FrontCourseCatalogSearchVO searchVO, Model model, HttpServletRequest request) {
page.setPageSize(searchVO.getMySize());
searchVO.setInternalOnly(isInternalOnlySearch());
PagingVO vo ...
1.建立websocket连接
var ws = null;
$("#connect").click(function() {
ws = new WebSocket("ws://localhost:8080/storage");
ws.binaryType = "arraybuffer";
2.拼接&发送byte array
String.prototype.getBytes = function() {
var bytes = [];
for (var i = 0; i < ...
1.任意xml资源文件
除了结构化资源外,Android还允许将任意xml文件用作资源。此方法将使用资源的优势延伸到了任意xml文件。首先,它提供了一种快速方式来根据所生成的资源ID引用这些文件。其次,该方法允许本地化这些 ...
js code
$("#saveFamilySituationBtn").click(function(){
var isSuccess = false;
//创建guardian数组
var guardianList = [];
//遍历guardian div,找出非完全的guardian div
$("div[name='guardian']").each(function(index){
//设立非空guardian div flag
var flag = false;
$(this). ...
client端,自定义table布局
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" pref ...
Jersey : The ResourceConfig instance does not contain any root resource classes
- 博客分类:
- jersey--restful ws
com.sun.jersey.api.container.ContainerException: The ResourceConfig instance does not contain any root resource classes.
at com.sun.jersey.server.impl.application.RootResourceUriRules.
<init>(RootResourceUriRules.java:99)
at com.sun.jersey.server.impl.application.WebApplicationImpl.
_init ...
Description Resource Path Location Type Java compiler level does not match the version of the installed Java project facet. tm-ws-infra Unknown Faceted Project Problem (Java Version Mismatch)
解决办法 在项目上右键Properties-》Project Facets,在打开的Project Facets页面中的Java下拉列表中,选择相应版本。 有可能是java1.6 改成java6之类的
java.lang.AbstractMethodError: javax.ws.rs.core.UriBuilder.uri(Ljava/lang/String
- 博客分类:
- jersey--restful ws
INFO: Server startup in 6705 ms
Nov 29, 2013 6:17:38 PM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet [JerseyServlet] in context with path [/jersey_project] threw exception [Servlet execution threw an exception] with root cause
java.lang.AbstractMet ...
Description Path Resource Location Type
ArtifactDescriptorException: Failed to read artifact descriptor for com.sun.jersey:jersey-client:jar:1.18.2: ArtifactResolutionException: Failure to transfer com.sun.jersey:jersey-client:pom:1.18.2 from http://repo2.maven.org/maven2 was cached in the local repo ...
轻松使用$q进行异步编程
- 博客分类:
- angularJS
第一部分关于js中的异步编程
异步编程简单的说就是你写了一段代码,但他不会按照你书写代码的顺序立即执行,而是等到程序中发生了某个事件(如用户点击了某个按钮,某个ajax请求得到了响应)才去执行这段代码,而且这段代码可能执行一次(如一个ajax请求得到了响应)、也可能执行很多次或者不执行(一个按钮被点击了许多次或者0次)这就是所谓的异步编程。
有两种异步程序模式单次执行模式和监听执行模式。像ajax请求这样的就是属于单次执行模式,请求、回调只会进行一次。像事件绑定就属于监听执行模式,只要事件发生回调就可以不断的执行。但是不管是单次执行模式还是监听执行模式在js程序中的共同点都是保存着一 ...
AngualrJS是一个很贴心的web应用框架。它有很不错的官方文档和示例;经过在现实环境中的测试著名的TodoMVC project,它在海量的框架中脱颖而出;而且网上到处都是很不错演示或者展示。但是对于一个没有接触过和AngularJS相似的框 ...
promise不是angular首创的,作为一种编程模式,它出现在……1976年,比js还要古老得多。promise全称是 Futures and promises。具体的可以参见 http://en.wikipedia.org/wiki/Futures_and_promises。
而在javascript世界中,一个广泛流行的库叫做Q 地址是https://github.com/kriskowal/q 而angular中的$q就是从它引入的。promise解决的是异步编程的问题,对于生活在同步编程世界中的程序员来说,它可能比较难于理解,这也构成了angular入门门槛之一,本文将用生活中的一 ...
1、使用Intent对象来指定一个Activity,并通过startActivity或startActivityForResult方法启动该Activity.以及在Activity之间传递数据:
public class MainActivity extends Activity {
private Button btn1,btn2;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInst ...
1、图片旋转
Bitmap bitmapOrg = BitmapFactory.decodeResource(this.getContext().getResources(), R.drawable.moon);
Matrix matrix = new Matrix();
matrix.postRotate(-90);//旋转的角度
Bitmap resizedBitmap = Bitmap.createBitmap(bitmapOrg, 0, 0,
bitmapOrg.getWidth(), bitmapOrg.getHeight(), ...