自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

修也

实践出真知.

  • 博客(18)
  • 资源 (126)
  • 问答 (1)
  • 收藏
  • 关注

原创 c++模版实例化继承

10099.9SubSub releasedSub releasedObject released#include using namespace std;templateclass Object{public:void f(T t = 0){cout {public:~Sub(){cout << "Sub released" << endl;}};class SubSub:publi

2016-01-24 21:26:58 1198

原创 primefaces 伸缩可合可并 panel,datatable的footer下分页

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:p="http://primefaces.org/ui"> Product

2016-01-22 11:19:39 1336

原创 Maven带jetty服务器插件

<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.org/xsd/maven-4.0.0.

2016-01-20 15:22:56 610

转载 maven打包jar指定 Main-Class

2016-01-19 14:36:16 2144

原创 EJB定时器

package remote;import javax.ejb.Remote;import javax.ejb.Timer;@Remotepublic interface TimerEJB { void setTime(java.util.Date init,long interval); void check(Timer timer); }package statel

2016-01-17 17:47:18 932 1

原创 ejb injection

package local;import javax.ejb.Local;@Localpublic interface Service { public String hello(String name); }package stateless;import javax.ejb.Stateless;import local.Service;@Stateless(n

2016-01-17 15:00:58 358

原创 EJB拦截器

package remote;import javax.ejb.Remote;@Remotepublic interface Hello { String hello(String name); void crazyit(); void exclude(); }package intercepter;import javax.interceptor.AroundI

2016-01-17 14:55:02 346

转载 EJB invocations from a remote client using JNDI

package org.jboss.as.quickstarts.ejb.remote.stateless; /** * @author Jaikiran Pai */public interface RemoteCalculator { int add(int a, int b); int subtract(int a, int b);}package or

2016-01-15 18:16:11 383

原创 EJB正确客户端调用(jboss6、jboss7)

服务器端:17:47:50,930 信息 [org.jboss.modules] JBoss Modules version 1.1.1.GA17:47:51,054 INFO [org.jboss.msc] JBoss MSC version 1.0.2.GA17:47:51,088 INFO [org.jboss.as] JBAS015899: JBoss AS 7.1.1.

2016-01-15 17:50:54 976

原创 javascript json属性用双引号还是单引号

JSON.parse("{name:45,age:909}")SyntaxError: JSON.parse: expected property name or '}' at line 1 column 2 of the JSON dataJSON.parse("{'name':45,'age':909}")SyntaxError: JSON.parse: expected propert

2016-01-15 11:01:21 2059

原创 springandstruts2整合

applicationContext.xml:/WEB-INF/applicationContext.xml<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="h

2016-01-13 18:33:33 436

原创 spring and hibernate mixed

runing result:16:57:17,439 INFO ClassPathXmlApplicationContext:574 - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@1de06d7e: startup date [Wed Jan 13 16:57:17 CST 2016

2016-01-13 16:59:51 583

原创 struts2的一个杂乱工程

<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN" "http://struts.apache.org/dtds/struts-2.1.7.dtd"> <!-- package:包,用

2016-01-08 19:03:21 392

转载 java生成图片

StringBuffer sb = new StringBuffer(); BufferedImage image = new BufferedImage(WIDTH, HEIGHT, BufferedImage.TYPE_INT_RGB); Graphics graphic = image.getGraphics();

2016-01-08 17:27:09 649

转载 carousel(primefaces)

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://xmlns.jcp.org/jsf/facelets" xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:f="http://xmlns.jcp.org/jsf/core" xmlns:p="http://primefaces.o

2016-01-04 19:47:01 635

原创 dataList(primefaces)

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://xmlns.jcp.org/jsf/facelets" xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:f="http://xmlns.jcp.org/jsf/core" xmlns:c="http://xmlns.jcp.or

2016-01-04 19:45:17 685

原创 dataScroller(primefaces)

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://xmlns.jcp.org/jsf/facelets" xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:f="http://xmlns.jcp.org/jsf/core" xmlns:c="http://xmlns.jcp.or

2016-01-04 19:43:47 641

原创 dataGrid(primefaces)

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://xmlns.jcp.org/jsf/facelets" xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:f="http://xmlns.jcp.org/jsf/core" xmlns:c="http://xmlns.jcp.or

2016-01-04 18:23:41 457

my mine x.jar

My tool written by java,namely java's code level tool for convenient method.Also is API utilities.

2020-08-08

windows nasm 2.13.1

windows nasm 2.13.1 汇编 windows nasm 2.13.1 汇编 windows nasm 2.13.1 汇编 windows nasm 2.13.1 汇编 windows nasm 2.13.1 汇编

2017-09-04

linux nasm-2.13.01 编译成功

linux nasm-2.13.01 编译成功 linux nasm-2.13.01 编译成功 linux nasm-2.13.01 编译成功 linux nasm-2.13.01 编译成功 linux nasm-2.13.01 编译成功

2017-09-04

nasm-2.13.01-win64

nasm-2.13.01-win64 汇编器 nasm-2.13.01-win64 汇编器 windows 64 位下的 汇编器 nasm-2.13.01-win64 汇编器

2017-09-04

jna_4.2.1 java

jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1jna-4.2.1

2017-09-03

spring-boot-1.5.6-src

spring-boot-1.5.6.RELEASE Source 源代码 maven的工程,可以自己编译(前提是自己的maven仓库配置正确...等)

2017-08-18

javafx_scenebuilder-2_0-windows

javafx_scenebuilder-2_0-windows

2017-07-28

rust编译器(msvc版)

rust-1.17.0-x86_64-pc-windows-msvc.tar.gz rust SDK 离线安装包

2017-06-06

numpy1.10.2-win32

numpy-1.10.2-py2.7-win32.egg

2017-03-11

go语言SDK1.8

go1.8.windows-386.zip go1.8.windows-386.zip go1.8.windows-386.zip go1.8.windows-386.zip go1.8.windows-386.zip

2017-03-06

php7.1.2源代码

php-7.1.2-src.zip

2017-03-06

php7.1.2 Win32

php-7.1.2-Win32-VC14-x86.zip

2017-03-06

php7.1.2-nts

php-7.1.2-nts-Win32-VC14-x86.zip

2017-03-06

rust-1.15.1-i686-pc-windows-msvc

rust 语言编译器.rust-1.15.1-i686-pc-windows-msvc rust-1.15.1-i686-pc-windows-msvc

2017-02-27

DOSBox0.74-win32

DOSBox0.74-win32 DOSBox0.74-win32 DOSBox0.74-win32 DOSBox0.74-win32 DOSBox0.74-win32 DOSBox0.74-win32 DOSBox0.74-win32 DOSBox0.74-win32 DOSBox0.74-win32

2017-01-21

java证书开发包(修正版)

java证书开发包(修正版): 1.修改公钥需使用证书密码的API,现在无需使用证书密码 2.修改公钥证书加解密的错误,先在所有加密解密必须使用byte数组,加密解密,否则会出错.

2017-01-19

java证书开发工具包

纯java开发工具包,不依赖第三方库.具有生成证书/证书库,导出证书cer,根证书,签发证书,用证书的加密解密,校验父子证书关系,验证有效期等.参考代码:http://blog.csdn.net/xiuye2015/article/details/54600252

2017-01-18

my jsonp with spring

My jsonp 结合 spring 开发jsonp接口项目,具体demo参见: http://blog.csdn.net/xiuye2015/article/details/54375313 , 功能不全,只做练习.

2017-01-12

wampserver

wampserver

2016-12-16

apache 2.4.23 x86

apache 2.4.23 x86

2016-12-16

python游戏:外星人入侵

python游戏:外星人入侵

2024-07-27

grub2 loader加载kernel和输出helloworld(x86)

Linux 环境中运行:(1)make (2)make mkernel.iso(3)虚拟机 CD加载iso (4)输出Hello World

2021-03-27

snapshot_2021-03-24_22-52.zip

x64dbg ,非常好用,比ollydbg 还好吧?

2021-03-25

cocos2dx android apk javascript

cocos2dx android apk javascript cocos2dx android apk javascript cocos2dx android apk javascript cocos2dx android apk javascript cocos2dx android apk javascript

2020-02-04

cocos2dx android apk

cocos2dx android cpp-tests 编译成功的apk文件(debug版) cocos2dx android 基本例子程序 编译成功的apk文件(debug版)

2020-02-04

freeglut.zip

opengl glut 的替换 freeglut 最新的 64位编译成功的!vs2015版 freeglut glut freeglut glut freeglut glut freeglut glut

2019-12-31

我的工具类upgrade2

java 代码级工具,JDK8,方便创建任意参数类型的ArrayList,HashMap,HashSet,缩短复杂的对象强制类型转换代码,运行代码级时间统计,新增java字符串代码代码级编译。参考地址:https://blog.csdn.net/xiuye2015/article/details/89945049。

2019-05-08

我的工具类upgrade1

java 代码级工具,JDK8,方便创建任意参数类型的ArrayList<T>,HashMap<T>,HashSet<T>,缩短复杂的对象强制类型转换代码,运行代码级时间统计,新增java字符串代码代码级编译。例子地址:https://blog.csdn.net/xiuye2015/article/details/89922818

2019-05-07

类型操作工具类

java 代码级工具,JDK8,方便创建任意参数类型的ArrayList<T>,HashMap<T>,HashSet<T>,缩短复杂的对象强制类型转换代码,运行代码级时间统计。代码例子地址:https://blog.csdn.net/xiuye2015/article/details/89813633

2019-05-04

rust-1.25.0-i686

rust-1.25.0-i686 rust-1.25.0-i686 rust-1.25.0-i686 rust-1.25.0-i686

2018-04-08

jdk-10-windows

jdk-10_windows-x64_bin jdk-10_windows-x64_bin jdk-10_windows-x64_bin

2018-04-05

rust-1.24.1

rust-1.24.1 rust-1.24.1 rust-1.24.1 rust-1.24.1 rust-1.24.1

2018-03-11

jboss-eap-7.1.0

jboss-eap-7.1.0 jboss-eap-7.1.0 jboss-eap-7.1.0 jboss-eap-7.1.0 jboss-eap-7.1.0

2018-03-08

grub源代码

grub源代码, grub源代码, grub源代码, grub源代码, grub源代码

2017-12-28

UEFI规范参考文档

UEFI规范参考文档 Unified Extensible Firmware Interface Specification Version 2.4 Errata B April, 2014

2017-12-28

apr-iconv linux 编译成功

apr-iconv linux 编译成功 apr-iconv linux 编译成功 apr-iconv linux 编译成功 apr-iconv linux 编译成功 apr-iconv linux 编译成功

2017-09-04

apr linux 编译成功

apr linux 编译成功 apr linux 编译成功 apr linux 编译成功 apr linux 编译成功 apr linux 编译成功 apr linux 编译成功

2017-09-04

apr-util linux 编译成功

apr-util linux 编译成功 apr-util linux 编译成功 apr-util linux 编译成功 apr-util linux 编译成功 apr-util linux 编译成功

2017-09-04

linux apache2 编译成功

linux apache2 编译成功 linux apache2 编译成功 linux apache2 编译成功 linux apache2 编译成功 linux apache2 编译成功

2017-09-03

linux eclipse

linux eclipse linux eclipse linux eclipse linux eclipse linux eclipse linux eclipse linux eclipse linux eclipse linux eclipse linux eclipse linux eclipse linux eclipse

2017-09-03

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

TA关注的人

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