自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(361)
  • 资源 (98)
  • 收藏
  • 关注

原创 Java unmarshaller(嵌套对象+数组) 系列5

public class Config { private long dashboardTvId ; private int freshTime ; private long monitorGroupId ; private int timeOfPareto ; private int numOfPointer ; private String name ; private String title ; private String th...

2021-10-27 11:06:16 293

原创 Java unmarshaller(嵌套对象) 系列4

public class Config { private long dashboardTvId ; private int freshTime ; private long monitorGroupId ; private int timeOfPareto ; private int numOfPointer ; private String name ; private String title ; private String th...

2021-10-27 10:57:23 389

原创 Java unmarshaller(对象数组) 系列3

import java.util.List;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlRootElement;@XmlRootElement(name = "configs")@XmlA

2021-10-27 09:43:50 461

原创 Java unmarshaller 系列2

Bean有注解import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlRootElement;@XmlRootElement(name = "config")@XmlAccessorType (XmlAccessType.FIELD)public class Config { p...

2021-10-27 09:23:35 143

原创 Java unmarshaller 系列1

public class Config { private long dashboardTvId ; private int freshTime ; private long monitorGroupId ; private int timeOfPareto ; private int numOfPointer ; private String name ; private String title ; private String ...

2021-10-27 09:19:52 302

原创 Ubuntu root can‘t show chrome

chrome can not startgoogle-chrome --enable-logging=stderr --log-level=4[11673:11673:0419/232003.842012:ERROR:zygote_host_impl_linux.cc(90)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.vim /usr/bin/google-chro..

2021-04-19 23:27:10 102

原创 STS install plugin with proxy

keytool -import -alias sub -keystore /home/myhome/tools/jdk1.8.0_192/jre/lib/security/cacerts -file /home/my/Downloads/sub-vmargs-Djavax.net.ssl.trustStore=/home/myhome/tools/jdk1.8.0_192/jre/lib/security/cacerts-Djavax.net.ssl.trustStorePassword...

2020-07-29 15:59:41 131

原创 Delete the same JAR with ls result

A folder has part jars which exist B folderA: /usr/local/tomcat/libB: /usr/local/tomcat/projectwebapps/yourProject/WEB-INF/libcd/usr/local/tomcat/libls /usr/local/tomcat/projectwebapps/you...

2020-04-13 14:12:09 129

原创 apache-tomcat-7.0.103 error

Client send Get method to get JSON databackground throw exceptionInvalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986edit $TOMCAT_HOME/conf/s...

2020-04-13 14:06:49 580

原创 install pgadmin4

vim /etc/apt/sources.list.d/pgdg.list deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - sudo apt-...

2020-04-06 09:58:19 182

原创 chmod 777 根目录导致问题

不小心使用 chmod 777 /导致 sudo su - 使用不了, root 也无法登录。提示如下sudo:sudo /etc/sudoers is world writablesudo:no valid sudoers sources found ,quittingsudo:unable to initialize policy plugin执行以下pkexecchmod...

2020-04-02 15:43:01 792

原创 go/gocode version

go gocode 版本不一致导致Eclipse不提示的解决方法go get -u -v github.com/mdempsky/gocodeEclipse go插件的设置

2020-03-31 08:25:28 1399 1

原创 Extjs4 store filter function

tmpStore= new Ext.data.Store({ model: 'monitorGroup' , proxy: { type: 'ajax'...

2020-03-16 10:45:03 226

原创 less 查找显示匹配字符

1.在用户 home目录创建~/.lessfilter touch ~/.lessfilter2.添加脚本内容#!/bin/shcase "$1" in *.awk|*.groff|*.java|*.js|*.m4|*.php|*.pl|*.pm|*.pod|*.sh|\ *.ad[asb]|*.asm|*.inc|*.[ch]|*.[ch]pp|*.[ch...

2019-12-19 09:26:51 1358

转载 extjs4 grid sample

Ext.require([ 'Ext.data.*', 'Ext.grid.*']);var TOTAL = 94; //randomvar fetchedData = function () { this.data = null; this.total = 0;};function getRandomDate() { var from = n...

2019-07-25 13:44:19 146

转载 显示ext4js form 校验出错的结果

Ext.create('Ext.form.Panel', { title: 'Simple Form', bodyPadding: 5, width: 350, // The form will submit an AJAX request to this URL when submitted url: 'save-form.php', // Fi...

2019-07-24 11:54:41 156

原创 Liferay struts2 portlet return JSON

struts.xml    <package name="namexxx"    extends="struts-portlet-default" namespace="/">        <action name="fetchServerData" class="accessServerProxyAction" method="fetchServe

2019-02-20 15:03:08 277

原创 liferay 容器下的servlet

web.xml    <servlet>        <servlet-name>YourServlet</servlet-name>            <servlet-class>com.liferay.portal.kernel.servlet.PortalDelegateServlet</servlet-class>...

2019-02-20 14:48:53 249

原创 javaagent学习

pom.xml<project xmlns="http://maven.apache.org/POM/4.0.0"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.o...

2019-01-09 12:01:47 283

原创 追加postgresql table column

DO$$BEGINIF not EXISTS (SELECT column_name FROM information_schema.columns WHERE table_schema='spc' and table_name='tableName' and column_name='new_column_name') THEN ALTER TABLE tableName  ADD CO...

2018-12-26 11:01:16 885

转载 Spring Data JPA without Spring Boot

src/main/webapp/WEB-INF/spring/context.xml <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema...

2018-12-11 10:49:36 470

原创 Minitab Z-MR chart 是如何計算的

例子數據來源https://msu.edu/course/stt/200/melfi/mtbdata/Exh_qc.MTW(以下拷貝來源)Z 控制图Z 控制图中的每个数据点 ziMR 控制图每个组中的每个数据点 Ri(z 值的移动极差)。如果 i < w,将不标绘 Ri,因为它未定义。表示法项 说明 xi 观测值 i μ 该组的均...

2018-07-24 10:16:39 1621 2

原创 spring boot web bean容器

谷歌过,别人说 GC root 里面的 stack 强引用就不会回收.骗谁啊.stack frame 已执行就收回了. 啥也不说了.

2018-07-19 16:20:08 149

原创 spring boot simple sample

import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.EnableAutoConfiguration;import org.springframework.web.bind.annotation.RequestMapping;import org.spri...

2018-07-17 15:06:17 701

原创 Extjs4 Grid column tip实现

var grid = new Ext.grid.GridPanel({ renderTo: 'xxxGrid',    store:  store,    columns: [         {header: 'key',flex: 1, dataIndex: 'key' , hidden:true},         {header: 'monit...

2018-06-11 11:48:09 546

原创 Ubuntu virtualbox不能识别 USB

sudo vim /etc/group找到 vboxusers:x:xxx改为 vboxusers:x:126:yourLoginName重启

2018-06-06 14:29:17 801

原创 java 远程调用 rabbitmq

新增管理员用户,虽然缺省(看起来是所有权限)都有,实际依然虽然手工点击一下 (Set permission)不然会提示一下错误Exception in thread "main" java.io.IOException      at com.rabbitmq.client.impl.AMQChannel.wrap(AMQChannel.java:106)      at com.rabbitmq...

2018-05-04 09:32:39 356

原创 rabbitmq 远程登录

rabbitmqctl add_user username passwordrabbitmqctl set_user_tags username administrator

2018-05-04 08:50:29 687

原创 virtualbox 不能识别USB设备

sudo usermod -G vboxusers -a currentUserName,其中currentUserName是你要使用vbox的当前用户名reboot

2018-03-17 00:17:59 5939

原创 mybatis 使用 log4j debug sql

配置log4j  输出 mybattis输出# Global logging configurationlog4j.rootLogger=ERROR, stdout# MyBatis logging configuration...log4j.logger.com.xxx..dao.mybatis.BlogMapper=TRACE# Console output...log4j.appender....

2018-03-09 10:20:53 893

原创 ubuntu install smartgit

sudo add-apt-repository ppa:eugenesan/ppasudo apt-get updatesudo apt-get install smartgithg

2017-11-19 11:53:08 455

转载 Docker 设置proxy

不同版本的ubuntu应对的docker 代理方法

2017-07-27 12:04:50 3255

原创 vncserver xstartup

Linux vnc4server 启动窗口

2017-06-29 12:50:07 5998

转载 Ubuntu自动启动Virtualbox 实例

Ubuntu自动启动Virtualbox 实例

2017-06-22 15:53:16 2742

原创 Ubuntu expect使用经验

自动登录远端目标机器    autoLogin.sh#!/usr/bin/expect set password yourPasswordspawn ssh  -p yourPortt  xxx.xxx.xxx.xxxset timeout 30000expect "[email protected]'s password:"set timeout 30000

2017-06-09 10:26:49 3801

转载 EXTJS 4 Json nested data in grid panel

{ "success":true, "error":false, "redirectUrl":null, "fund":[{ "cat_id":1, "catname":"Europe OE Japan Large-Cap Equity", "region":{ "region_id":2, "region_name":"JAPAN"

2017-04-23 11:26:50 480

原创 Postgresql SQL 选择每组的前面几条记录

Postgresql SQL 选择每组的前面几条记录

2016-11-02 10:34:44 2996

原创 /usr/bin/env: node: 没有那个文件或目录

npm install -g bower bower install/usr/bin/env: node: 没有那个文件或目录ln -s /usr/bin/nodejs  /usr/bin/noderoot@# bower -version1.7.9

2016-09-20 22:48:21 3896

原创 Ubuntu 下Mysql server 远端访问

1. comment  /etc/mysql/mysql.conf.d/mysqld.cnf    bind-address  =127.0.0.112. execute sqlgrant all on *.* to root@'%' identified by 'mysql';   //root username   mysql user's passwordflush privil

2016-09-17 00:24:03 387

原创 ubuntu can't add add-apt-

environmentuname -aLinux jerry-xia-pc 4.2.0-27-generic #32~14.04.1-Ubuntu SMP Fri Jan 22 15:32:26 UTC 2016 x86_64 x86_64 x86_64 GNU/Linuxappearanceadd-apt-repository ppa:webupd8team/y-pp

2016-08-11 09:32:10 1079

EXTJS4.1.0

个人认为这个版本还可以。可以直接通过浏览器打开里面的example

2015-04-08

ext4.2.0完整包

Ext JS 4.2 is a pure JavaScript application framework that works on all modern browsers from IE6 to the latest version of Chrome. It enables you to create the best cross-platform applications using nothing but a browser, and has a phenomenal API

2014-09-19

ext4.2.1完整包

Ext JS 4.2 is a pure JavaScript application framework that works on all modern browsers from IE6 to the latest version of Chrome. It enables you to create the best cross-platform applications using nothing but a browser, and has a phenomenal API

2014-09-19

Liferay的AUI框架

Liferay中的AUI框架,官方叫做Alloy,是一个UI超框架,能为浏览器的三方面,结构,风格和表现建立网络应用提供连续的简单的API。 它融合了三种设计语言:HTML, CSS 和 JAVA。 准确来说AUI是Liferay在YUI的基础上进行的Liferay扩展,以方便Liferay的一些实际应用和扩展。AUI的很多语法结构、使用方法都都和YUI相关不太多。熟悉YUI的能够快速熟悉AUI。

2014-06-12

ext-jsb spket

ext-jsb spket引入的js

2012-07-24

spket1.6.23 Eclipse 插件

spket1.6.23 Eclipse 插件 , 已被破解,将压缩文件解压至droins

2012-07-24

mybatis generator eclipse plugin

自动生成映射类 Eclipse Mybatis Generator 自动生成映射类 Eclipse Mybatis Generator

2012-07-16

pattern source

niufish 的设计 模式代码,java 版本。

2012-07-08

Activity for Eclipse plugin

Activity for eclipse plugin .Version:5.9.3 下载后直接解压至dropins 目录下就能正常工作 ,然后启动 eclipse -clean

2012-06-27

Pro javascript Techniques

精通javascript

2011-12-27

精通javascript书及源码

精通javascript书及源码

2011-12-27

UML基础教程

UML基础教程 UML基础教程 UML基础教程 UML基础教程

2011-11-18

JSR 311例子

JSR 311(Java API for RESTful Web Services)例子

2011-11-09

Spring Android Reference Manual

Spring Android Reference Manual

2011-11-09

Skeleton Pro

JGoodies ::Java User Interface Design-->Application -->Skeleton Pro

2011-10-18

Metamorphosis

JGoodies ::Java User Interface Design-->Application -->Metamorphosis

2011-10-18

Validation Demo

JGoodies ::Java User Interface Design-->Application -->Validation Demo

2011-10-18

Looks Demo

JGoodies ::Java User Interface Design-->Application -->Looks Demo

2011-10-18

Forms Demo

JGoodies ::Java User Interface Design-->Application -->Forms Demo

2011-10-18

JDiskReport

JGoodies ::Java User Interface Design-->Application -->JDiskReport

2011-10-18

JGoodies Validation

JGoodies ::Java User Interface Design-->Libraries--> JGoodies Validation

2011-10-18

JGoodies Looks

JGoodies ::Java User Interface Design-->Libraries--> JGoodies Looks

2011-10-18

JGoodies Forms

JGoodies ::Java User Interface Design-->Libraries--> JGoodies Forms

2011-10-18

spring-tool-suite-4-4.11.0.RELEASE-e4.20.0-linux.gtk.x86_64.tar.gz

Spring Tools 4 is the next generation of Spring tooling for your favorite coding environment. Largely rebuilt from scratch, it provides world-class support for developing Spring-based enterprise applications, whether you prefer Eclipse, Visual Studio Code, or Theia IDE.

2021-07-21

code_1.58.2-1626302803_amd64.deb

Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages (such as C++, C#, Java, Python, PHP, Go) and runtimes (such as .NET and Unity). Begin your journey with VS Code with these introductory videos.

2021-07-21

go1.16.5.linux-amd64.tar.gz

Download Go for Linux go1.16.5.linux-amd64.tar.gz (123 MB) Download Go for Linux go1.16.5.linux-amd64.tar.gz (123 MB)

2021-06-25

google-chrome-stable_current_amd64.deb

New version chrome

2021-04-19

spring-tool-suite-4-4.6.0.RELEASE-e4.15.0-linux.gtk.x86_64.tar.gz

Spring Tools 4 is the next generation of Spring tooling for your favorite coding environment. Largely rebuilt from scratch, it provides world-class support for developing Spring-based enterprise applications, whether you prefer Eclipse, Visual Studio Code, or Theia IDE.

2020-04-13

dubbo项目maven依赖

https://github.com/apache/incubator-dubbo 下载后编译不通过 mvn clean package.试试这个

2019-01-08

jdk1.8中文 java api jdk 中文

java api jdk 中文 java api jdk 中文

2017-08-09

Java SE Development Kit 8u144 Documentation下载

Java SE Development Kit 8u144 Documentation

2017-08-09

nexus 2.6.2 bundle

Nexus 2.6.2

2017-03-31

extjs6 cmd(bit64 Linux)

Cmd is the cornerstone for building your Sencha apps. Sencha Cmd provides a full set of lifecycle management features to complement your Sencha projects.

2016-10-18

extjs6 cmd(bit32 Linux)

Cmd is the cornerstone for building your Sencha apps. Sencha Cmd provides a full set of lifecycle management features to complement your Sencha projects.

2016-10-18

ext6 开发包

extjs6下载 This is the Sencha Ext JS Framework Package, or just "ext" for short.(30 days) Try Sencha Ext JS for 30 Days

2016-09-26

mysql postgres convert tool

mysql ,postgresql 之间的互相转换。需要在window安装

2016-09-17

chrome 32bit for ubuntu

Google Chrome 42.0.2311.90 (32-bit)

2016-08-17

Java patterm source

Java 设计模式代码示例 包含二十三种模式。是初接触模式不可多得的代码示例。超值下载

2016-06-10

Extjs 4.0 正式版

Extjs 4

2015-04-08

struts-2.3.4-all

Struts框架2.3.4最新版本 struts-2.3.4-all struts-2.3.4-all

2015-04-08

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除