- 博客(26)
- 收藏
- 关注
原创 二、Activiti 6.0 简单样例
一、Eclipse 安装Activiti 插件Eclipse -> Help -> Install New SoftWare-> Addhttp://www.activiti.org/designer/update/二、创建工作流
2019-02-13 16:23:38 495
原创 一、Activiti 6.0
一、Activiti vs JBPMActiviti: MyBatis + JBPM4 + Spring + RESTfulJBPM: Hibernate + Drools Flow + JPA + Message二、Activiti 运行环境官网:https://www.activiti.org/Github:https://github.com/Activiti/Activiti...
2019-02-11 14:16:34 320
原创 mac系统下安装JDK
一、下载: http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 我的电脑是mac,所以下载版本是jdk-8u201-macosx-x64.dmg二、安装:安装:jdk-8u201-macosx-x64.dmgjava -version查看...
2019-01-20 13:58:22 463
原创 五、Python3 类
一、类的定义class Student(): name = '' age = 0 def getName(self): return self.name def getAge(self): return self.agestudent = Student()
2019-01-16 14:44:06 138
原创 Linux基础
一、权限十位(1+3+3+3)(文件类型 + 所有者 + 所属组 + 其他人):-rw-r–r--文件类型:- 、d 目录、l 软连接文件(快捷方式)r 读、w 写、x 执行二、常见目录/ 根目录/bin 命令保护目录/boot 启动目录/dev 特殊文件保存目录/etc 系统默认配置文件目录/home 普通用户家目录/lib 函数库目录/mnt 系统挂...
2019-01-15 14:05:26 125
原创 四、Python3 函数
一、函数的定义#普通函数def sum(a,b) : return a + bprint(sum(10,11))#函数返回多个结果 (tuple)def test(a,b) : aa = a * 3 bb = b * 2 return aa, bbresult = test(3, 6)print(result[0], result[1])result_aa, res...
2019-01-14 14:32:22 303
原创 三、Python3 项目结构
一、import、from importcity.py__all__ = ['cities1','cities2']cities1 = ['XIAN','BEIJING','SHENGZHEN','SHANGHAI']cities2 = ['XIAN','SHENGZHEN','SHANGHAI']cities3 = ['XIAN','BEIJING','SHANGHAI']te...
2019-01-11 14:44:45 1338
原创 一、Python3 数据类型
一、下载安装https://www.python.org/downloads/二、基本数据类型1、Number:int、float二进制:0b10八进制:0o10十六进制:0x10
2019-01-09 13:23:25 123
原创 AEM学习:I18n(八)
http://localhost:4502/libs/cq/i18n/translator.html一,java codeGranite.I18n.setLocale("en");Granite.I18n.get("TEST-001");Granite.I18n.setLocale("fr");Granite.I18n.get("TEST-001");二,html code...
2018-10-05 10:14:34 885
原创 windows系统下安装Gitblit
一,安装JDK具体步骤:https://blog.csdn.net/zhaoqi333/article/details/82107821二,安装Gitblit下载地址:http://www.gitblit.com/ 解压缩下载的压缩包,无需安装 创建用于存储资料的文件夹 配置gitblit.properties 文件三,gitblit.propertiesgitblit.p...
2018-08-29 10:17:53 844
翻译 windows系统下安装JDK
一、下载: http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 我的电脑是64位的,所以下载版本是jdk-8u121-windows-x64.exe二、安装: 我选择是默认安装,也可以自定义安装路径。安装完JDK后要安装JRE,建...
2018-08-27 09:58:20 296
原创 Sling CMS 学习:Servlet(六)
一,pom.xml<?xml version="1.0" encoding="ISO-8859-1"?><!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file dist...
2018-08-23 10:02:46 714
原创 Sling CMS 学习:bundles(五)
一,创建Sling Bundle Projectpom.xml<?xml version="1.0" encoding="ISO-8859-1"?><!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. Se...
2018-08-21 13:32:47 855
原创 Sling CMS 学习:I18n(四)
一,I18N定义<?xml version="1.0" encoding="UTF-8"?><jcr:root xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:mix="http://www.jcp.org/jcr/mix/1.0" xmlns:sling="http://www.sling.apache.org/sling
2018-08-21 10:19:11 486
原创 Sling CMS 学习:Sling Content 组件及模板(三)
一,模板模板定义:<?xml version="1.0" encoding="UTF-8"?><jcr:root xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" xmlns:sling="http://www.sling.apache.org/slin
2018-08-20 09:40:04 1103
原创 Sling CMS 学习:开发环境搭建(二)
一,安装Eclipse插件help -->Install New Software --> http://mirrors.shu.edu.cn/apache/sling/eclipse/1.2.2/二,New Sling Content Project三,New Sling Bundle Project
2018-08-20 09:31:05 1084
原创 Sling CMS 学习:环境搭建(一)
一,安装下载地址:https://sling.apache.org/documentation/getting-started.html运行: java -jar org.apache.sling.cms.builder-0.9.0.jar
2018-08-20 09:22:58 2062
原创 AEM学习:Errorhandler(八)
一,添加 Errorhandler当访问页面出现相应错误时,则跳转到对应的页面。http://localhost:4502/crx/de/index.jsp#/apps/sling/servlet/errorhandler二,代码.content.xml<?xml version="1.0" encoding="UTF-8"?><jcr:root ...
2018-08-07 10:08:33 629
原创 AEM学习:System Console ConfigMgr(七)
一,ServiceAdd interface public interface XicoService { public String getData();}Add Classimport org.apache.felix.scr.annotations.Component;import org.apache.felix.scr.annotations.Servi...
2018-08-01 10:54:28 753
原创 AEM学习:AEM Query Search(六)
一,Query Search Debuggerhttp://localhost:4502/libs/cq/search/content/querydebug.html?_charset_=UTF-8&query=二,基本查询查询/content/geometrixx-gov/en路径下jcr:title为Application Dashboard的所有节点:path=...
2018-07-16 10:23:18 1447
原创 AEM学习:Component(五)
一,目录结构二,HTML<sly data-sly-test.empty="${!properties.title}"/><div data-sly-test="${empty && wcmmode.edit}" class="cq-placeholder" data-emptytext="Detail Info Component"&
2018-07-11 14:19:43 3063
原创 AEM学习:Sightly(四)
一,data-sly-use<sly data-sly-use.url1="${ '/apps/huawei-cbg-site/components/content/how-to/utils/LinkUtils.js' @ link=properties.linkURL}" /> LinkUtils.jsuse(function() { 'use strict' try {...
2018-06-26 14:03:29 2059
原创 AEM学习:IntelliVault插件(三)
一,IntelliJ IDE安转IntelliVault插件二,配置IntelliVault插件打开crx-quickstart\opt\filevault路径,找到filevault.zip文件解压该文件,配置IntelliVault插件路径三,使用IntelliVault插件push代码...
2018-06-26 14:03:04 1860
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人