自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(2)
  • 资源 (7)
  • 收藏
  • 关注

原创 JVM内存分析操作

JVM内存分析操作 JPS 用来查看基于HotSpot的JVM里面中,所有具有访问权限的Java进程的具体状态, 包括进程ID,进程启动的路径及启动参数等等,与unix上的ps类似,只不过jps是用来显示java进程,可以把jps理解为ps的一个子集。 查看当前运行的java项目的jvm配置 jps -v 常用参数说明 常用参数说明 -q 忽略输出的类名、Jar名以及传递给main方法的参数...

2019-02-16 23:28:40 202

原创 Java 字节码分析 i=i++的结果

示例代码 public static void main(String[] args) { int i =3; i=i++; System.out.println(i); } 运行结果是3 分析 关键还是对i++即 IINC 1 1的理解。i++是直接在局部变量表上做自加操作。而i=i+1是先从局部变量表拷贝i的值到操作栈,在操作栈执行i+1操作,最后将操作栈的运算...

2019-02-09 15:28:08 293

信息技术开源元数据通用要求.pdf

信息技术开源元数据通用要求

2024-08-12

应用软件行业企业质量管理核心过程实施指南.pdf

应用软件行业企业质量管理核心过程实施指南

2024-08-12

通义灵码AIGC+软件开发新范式白皮书.pdf

【通义灵码】AIGC+软件开发新范式白皮书

2024-08-12

中国DevOps现状调查报告2024.pdf

中国DevOps现状调查报告2024,用于了解DevOps的行业现状

2024-08-12

2020-Scrum指南.pdf

Scrum 的定义 Scrum 是一个轻量的框架,它通过提供针对复杂问题的自适应解决方案来帮助人们、团队和组织 创造价值。 简而言之,Scrum 需要 Scrum Master 营造一个环境,从而: 1. 一名 Product Owner 将解决复杂问题所需的工作整理成一份 Product Backlog。 2. Scrum Team 在 一个 Sprint 期间将选择的工作转化为价值的 Increment。 3. Scrum Team 和利益攸关者检视结果并为下一个 Sprint 进行调整。 4. 重复 Scrum 是易于理解的。原封不动地去尝试,并确定其哲学、理论和结构是否有

2020-12-06

架构师特刊2018合辑.zip

架构师特刊2018合辑,促进软件开发领域知识与创新的传播,新技术,热点,专题,架构,理论,专题,观点

2020-05-09

架构师特刊2019合辑.zip

架构师特刊2019合辑,促进软件开发领域知识与创新的传播,新技术,热点,专题,架构,理论,专题,观点

2020-05-09

apache-cxf-3.3.5

Apache CXF is an open source services framework. CXF helps you build and develop services using frontend programming APIs, like JAX-WS and JAX-RS. These services can speak a variety of protocols such as SOAP, XML/HTTP, RESTful HTTP, or CORBA and work over a variety of transports such as HTTP, JMS or JBI. CXF includes a broad feature set, but it is primarily focused on the following areas: Web Services Standards Support: CXF supports a variety of web service standards including SOAP, the Basic Profile, WSDL, WS-Addressing, WS-Policy, WS-ReliableMessaging, WS-Security, WS-SecurityPolicy, WS-SecureConversation, and WS-Trust. Frontends: CXF supports a variety of "frontend" programming models. CXF implements the JAX-WS APIs. It also includes a "simple frontend" which allows creation of clients and endpoints without annotations. CXF supports both contract first development with WSDL and code first development starting from Java. There is also a JAX-RS frontend for providing REST support. Ease of use: CXF is designed to be intuitive and easy to use. There are simple APIs to quickly build code-first services, Maven plug-ins to make tooling integration easy, JAX-WS API support, Spring 2.x XML support to make configuration a snap, and much more. Binary and Legacy Protocol Support: CXF has been designed to provide a pluggable architecture that supports not only XML but also non-XML type bindings, such as JSON and CORBA, in combination with any type of transport.

2020-01-21

Springcloud项目调用dubbo项目.zip

实现Springcloud向dubbo项目的接口调用。 FeignToDubbo-starter模块负责利用Feign将底层的Http协议转化为dubbo协议,供SpringCloud项目使用。引入FeignToDubbo-starter后会引入dubbo的依赖,使用注解DubboRefence可以标注接口类为调用dubbo api的接口,同时 @DubboReference 的注解可以像Dubbo的Refence一样指定接口的调用参数,@DubboReference 注解标注的接口类会执行Http协议转Dubbo协议,之后的接口调用使用dubbo方式。

2019-08-27

ApacheDirectoryStudio mac版

ApacheDirectoryStudio-2.0.0.v20180908-M14-macosx.cocoa.x86_64.dmg

2019-03-19

JAVA工程师技术能力图

作为一名JAVA工程师的必备技能思维导图,主要有JAVA语言基础,Spring,JVM,Redis,数据库,微服务等

2019-01-31

空空如也

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

TA关注的人

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