如何使用VLT工具 how-to-use-the-vlt-tool
Jackrabbit FileVault工具(VLT)是由Apache Foundation开发的工具,用于将Jackrabbit/AEM实例的内容映射到您的文件系统。 VLT工具具有类似源代码控制系统客户端(如Subversion (SVN)客户端)的功能,可提供正常的签入、签出和管理操作,以及灵活呈现项目内容的配置选项。
从命令行运行VLT工具。 本文档介绍如何使用该工具,包括如何开始使用并获得帮助,以及所有命令和可用选项的列表。
概念和架构 concepts-and-architecture
有关Filevault工具的概念和结构的全面概述,请参阅官方Apache Jackrabbit Filevault文档中的Filevault概述和Vault FS页面。
VLT快速入门 getting-started-with-vlt
要开始使用VLT,您需要执行以下操作:
- 安装VLT、更新环境变量和更新全局忽略的subversion文件。
- 设置AEM存储库(如果尚未设置)。
- 查看AEM存储库。
- 与存储库同步。
- 测试同步是否有效。
安装VLT工具 installing-the-vlt-tool
要使用VLT工具,首先需要安装它。 默认情况下,不会安装此工具,因为它是一个附加工具。 此外,您需要设置系统的环境变量。
-
从Maven对象存储库下载FileVault存档文件。
note note NOTE VLT工具的源在GitHub上为。 1. 提取存档。
-
将
<archive-dir>/vault-cli-<version>/bin
添加到您的环境PATH
,以便根据需要访问命令文件vlt
或vlt.bat
。 例如:<aem-installation-dir>/crx-quickstart/opt/helpers/vault-cli-3.1.16/bin>
-
打开命令行外壳程序并执行
vlt --help
。 确保输出与以下帮助屏幕类似:code language-shell vlt --help ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Jackrabbit FileVault [version 3.1.16] Copyright 2013 by Apache Software Foundation. See LICENSE.txt for more information. ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Usage: vlt [options] <command> [arg1 [arg2 [arg3] ..]] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Global options: -Xjcrlog <arg> Extended JcrLog options (omit argument for help) -Xdavex <arg> Extended JCR remoting options (omit argument for help) --credentials <arg> The default credentials to use --update-credentials if present the credentials-to-host list is updated in the ~/.vault/auth.xml --config <arg> The JcrFs config to use -v (--verbose) verbose output -q (--quiet) print as little as possible --version print the version information and exit --log-level <level> the log4j log level -h (--help) <command> print this help
安装之后,您需要更新全局忽略的subversion文件。 编辑您的svn设置并添加以下内容:
[miscellany]
### Set global-ignores to a set of whitespace-delimited globs
### which Subversion will ignore in its 'status' output, and
### while importing or adding files and directories.
global-ignores = .vlt
配置行尾字符 configuring-the-end-of-line-character
VLT根据以下规则自动处理行尾(EOF):
- 在Windows上签出的文件行以
CRLF
结尾 - Linux/Unix上签出的文件行以
LF
结尾 - 提交到存储库的文件行以
LF
结尾
为确保VLT和SVN配置匹配,您应该将svn:eol-style
属性设置为native
,以扩展存储在存储库中的文件。 编辑您的svn设置并添加以下内容:
[auto-props]
*.css = svn:eol-style=native
*.cnd = svn:eol-style=native
*.java = svn:eol-style=native
*.js = svn:eol-style=native
*.json = svn:eol-style=native
*.xjson = svn:eol-style=native
*.jsp = svn:eol-style=native
*.txt = svn:eol-style=native
*.html = svn:eol-style=native
*.xml = svn:eol-style=native
*.properties = svn:eol-style=native
签出存储库 checking-out-the-repository
使用源代码管理系统签出存储库。 例如,在svn中,键入以下内容(将URI和路径替换为存储库):
svn co https://svn.server.com/repos/myproject
与存储库同步 synchronizing-with-the-repository
您需要将filevault与存储库同步。 要执行此操作:
-
在命令行中,导航到
content/jcr_root
。 -
键入以下内容(将您的端口号替换为 4502 和您的管理员密码)以签出存储库:
code language-shell vlt --credentials admin:admin co --force http://localhost:4502/crx
note note NOTE 凭据只需在初始签出时指定一次。 然后,它们将存储在 .vault/auth.xml
内的主目录中。
测试同步是否有效 testing-whether-the-synchronization-worked
签出存储库并进行同步后,应进行测试以确保所有功能均可正常运行。 一个简单的方法是编辑 .jsp 文件,并查看提交更改后是否反映更改。
要测试同步,请执行以下操作:
- 导航到
.../jcr_content/libs/foundation/components/text
。 - 在
text.jsp
中编辑某些内容。 - 通过键入
vlt st
查看修改的文件 - 键入
vlt diff text.jsp
查看更改 - 提交更改:
vlt ci test.jsp
。 - 重新加载包含文本组件的页面,并查看更改是否存在。
使用VLT工具获取帮助 getting-help-with-the-vlt-tool
安装VLT工具后,可以从命令行访问其帮助文件:
vlt --help
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Jackrabbit FileVault [version 3.1.16] Copyright 2013 by Apache Software Foundation. See LICENSE.txt for more information.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Usage:
vlt [options] <command> [arg1 [arg2 [arg3] ..]]
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Global options:
-Xjcrlog <arg> Extended JcrLog options (omit argument for help)
-Xdavex <arg> Extended JCR remoting options (omit argument for help)
--credentials <arg> The default credentials to use
--update-credentials if present the credentials-to-host list is updated in the ~/.vault/auth.xml
--config <arg> The JcrFs config to use
-v (--verbose) verbose output
-q (--quiet) print as little as possible
--version print the version information and exit
--log-level <level> the log4j log level
-h (--help) <command> print this help
Commands:
export Export the Vault filesystem
import Import a Vault filesystem
checkout (co) Checkout a Vault file system
status (st) Print the status of working copy files and directories.
update (up) Bring changes from the repository into the working copy.
info Displays information about a local file.
commit (ci) Send changes from your working copy to the repository.
revert (rev) Restore pristine working copy file (undo most local edits).
resolved (res) Remove 'conflicted' state on working copy files or directories.
propget (pg) Print the value of a property on files or directories.
proplist (pl) Print the properties on files or directories.
propset (ps) Set the value of a property on files or directories.
add Put files and directories under version control.
delete (del,rm) Remove files and directories from version control.
diff (di) Display the differences between two paths.
rcp Remote copy of repository content.
sync Control vault sync service
console Run an interactive console
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
要获取有关特定命令的帮助,请键入帮助命令,然后键入该命令的名称。 例如:
vlt --help export
Usage:
export -v|-t <arg>|-p <uri> <jcr-path> <local-path>
Description:
Export the Vault filesystem mounted at <uri> to the local filesystem at <local-path>. An optional <jcr-path> can be specified to export just a sub tree.
Example:
vlt export http://localhost:4502/crx /apps/geometrixx myproject
Options:
-v (--verbose) verbose output
-t (--type) <arg> specifies the export type. either 'platform' or 'jar'.
-p (--prune-missing) specifies if missing local files should be deleted.
<uri> mountpoint uri
<jcr-path> the jcr path
<local-path> the local path
在VLT中执行的常见任务 common-tasks-performed-in-vlt
以下是在VLT中执行的一些常见任务。 有关每个命令的详细信息,请参阅各个命令。
签出子树 checking-out-a-subtree
如果您只想签出存储库的子树,例如/apps/geometrixx
,可以通过键入以下内容来实现这一点:
vlt co http://localhost:4502/crx/-/jcr:root/apps/geometrixx geo
执行此操作将创建具有META-INF
和jcr_root
目录的新导出根geo
,并将所有低于/apps/geometrixx
的文件放入geo/jcr_root
。
执行过滤的签出 performing-a-filtered-checkout
如果您有现有的工作区筛选器并且要将其用于签出,您可以先创建META-INF/vault
目录并将筛选器放置在该处,或者按如下方式在命令行中指定:
$ vlt co --filter filter.xml http://localhost:4502/crx/-/jcr:root geo
示例筛选条件:
<?xml version="1.0" encoding="UTF-8"?>
<workspaceFilter version="1.0">
<filter root="/etc/designs/geometrixx" />
<filter root="/apps/geometrixx"/>
</workspaceFilter>
使用导入/导出而不是.vlt控件 using-import-export-instead-of-vlt-control
您无需使用控制文件即可在JCR存储库和本地文件系统之间导入和导出内容。
在不使用.vlt
控件的情况下导入和导出内容:
-
最初设置存储库:
code language-shell $ cd /projects $ svn mkdir https://svn.server.com/repos/myproject $ svn co https://svn.server.com/repos/myproject $ vlt export -v http://localhost:4502/crx /apps/geometrixx geometrixx $ cd geometrixx/ $ svn add META-INF/ jcr_root/ $ svn ci
-
更改远程拷贝并更新JCR:
code language-shell $ cd /projects/geometrixx $ vlt -v import http://localhost:4502/crx . /
-
更改远程副本并更新文件服务器:
code language-shell $ cd /projects/geometrixx $ vlt export -v http://localhost:4502/crx /apps/geometrixx . $ svn st M META-INF/vault/properties.xml M jcr_root/apps/geometrixx/components/contentpage/.content.xml $ svn ci
使用VLT using-vlt
要在VLT中发出命令,请在命令行键入以下内容:
vlt [options] <command> [arg1 [arg2 [arg3] ..]]
以下各节详细介绍了选项和命令。
VLT全局选项 vlt-global-options
以下是VLT选项的列表,这些选项可用于所有命令。 有关其他可用选项的信息,请参阅各个命令。
-Xjcrlog <arg>
-Xdavex <arg>
--credentials <arg>
--config <arg>
-v (--verbose)
-q (--quiet)
--version
--log-level <level>
-h (--help) <command>
VLT命令 vlt-commands
下表描述了所有可用的VLT命令。 有关语法、可用选项和示例的详细信息,请参阅各个命令。
export
import
checkout
co
analyze
status
st
update
up
info
commit
ci
revert
rev
resolved
res
propget
pg
proplist
pl
propset
ps
add
delete
del
或 rm
diff
di
console
rcp
sync
导出 export
将安装在<uri>上的Vault文件系统导出到<local-path>上的本地文件系统。 可以指定可选的<jcr-path>以仅导出子树。
语法 syntax
export -v|-t <arg>|-p <uri> <jcr-path> <local-path>
选项 options
-v (--verbose)
-t (--type) <arg>
-p (--prune-missing)
<uri>
<jcrPath>
<localPath>
示例 examples
vlt export http://localhost:4502/crx /apps/geometrixx myproject
导入 import
将本地文件系统(从<local-path>
开始)导入到<uri>
的Vault文件系统。 您可以指定<jcr-path>
作为导入根。 如果指定了--sync
,导入的文件将自动置于保险库控制下。
语法 syntax-1
import -v|-s <uri> <local-path> <jcr-path>
选项 options-1
-v (--verbose)
-s (-- sync)
<uri>
<jcrPath>
<localPath>
示例 examples-1
vlt import http://localhost:4502/crx . /
结帐(co) checkout-co
执行从JCR存储库到本地文件系统的初始签出,从<uri>开始到本地文件系统<local-path>。 您还可以添加<jcrPath>参数以签出远程树的子目录。 可以指定复制到META-INF目录中的Workspace筛选器。
语法 syntax-2
checkout --force|-v|-q|-f <file> <uri> <jcrPath> <localPath>
选项 options-2
--force
-v (--verbose)
-q (--quiet)
-f (--filter) <file>
<uri>
<jcrPath>
<localPath>
示例 examples-2
使用JCR远程处理:
vlt --credentials admin:admin co http://localhost:8080/crx/server/crx.default/jcr_root/
在默认工作区中:
vlt --credentials admin:admin co http://localhost:8080/crx/server/-/jcr_root/
如果URI不完整,则将展开该URI:
vlt --credentials admin:admin co http://localhost:8080/crx
分析 analyze
分析包。
语法 syntax-3
analyze -l <format>|-v|-q <localPaths1> [<localPaths2> ...]
选项 options-3
-l (--linkFormat) <format>
-v (--verbose)
-q (--quiet)
<localPaths> [<localPaths> ...]
状态 status
打印工作副本文件和目录的状态。
如果指定了--show-update
,则会针对远程版本检查每个文件。 然后,第二个字母指定更新操作将执行的操作。
语法 syntax-4
status -v|-q|-u|-N <file1> [<file2> ...]
选项 options-4
-v (--verbose)
-q (--quiet)
-u (--show-update)
-N (--non-recursive)
<file> [<file> ...]
更新 update
将更改从存储库复制到工作副本。
语法 syntax-5
update -v|-q|--force|-N <file1> [<file2> ...]
选项 options-5
-v (--verbose)
-q (--quiet)
--force
-N (--non-recursive)
<file> [<file> ...]
信息 info
显示有关本地文件的信息。
语法 syntax-6
info -v|-q|-R <file1> [<file2> ...]
选项 options-6
-v (--verbose)
-q (--quiet)
-R (--recursive)
<file> [<file> ...]
提交 commit
将更改从工作副本发送到存储库。
语法 syntax-7
commit -v|-q|--force|-N <file1> [<file2> ...]
选项 options-7
-v (--verbose)
-q (--quiet)
--force
-N (--non-recursive)
<file> [<file> ...]
还原 revert
将工作副本文件恢复为原始状态并撤消大多数本地编辑。
语法 syntax-8
revert -q|-R <file1> [<file2> ...]
选项 options-8
-q (--quiet)
-R (--recursive)
<file> [<file> ...]
已解决 resolved
删除工作副本文件或目录上的 冲突 状态。
语法 syntax-9
resolved -q|-R|--force <file1> [<file2> ...]
选项 options-9
-q (--quiet)
-R (--recursive)
--force
<file> [<file> ...]
Propget propget
在文件或目录上打印属性的值。
语法 syntax-10
propget -q|-R <propname> <file1> [<file2> ...]
选项 options-10
-q (--quiet)
-R (--recursive)
<propname>
<file> [<file> ...]
proplist proplist
打印文件或目录上的属性。
语法 syntax-11
proplist -q|-R <file1> [<file2> ...]
选项 options-11
-q (--quiet)
-R (--recursive)
<file> [<file> ...]
属性集 propset
设置文件或目录上属性的值。
vlt:mime-type
语法 syntax-12
propset -q|-R <propname> <propval> <file1> [<file2> ...]
选项 options-12
-q (--quiet)
-R (--recursive)
<propname>
<propval>
<file> [<file> ...]
添加 add
将文件和目录置于版本控制之下,并计划将它们添加到存储库中。 它们将在下次提交时添加。
语法 syntax-13
add -v|-q|-N|--force <file1> [<file2> ...]
选项 options-13
-v (--verbose)
-q (--quiet)
-N (--non-recursive)
--force
<file> [<file> ...]
删除 delete
从版本控制中删除文件和目录。
语法 syntax-14
delete -v|-q|--force <file1> [<file2> ...]
选项 options-14
-v (--verbose)
-q (--quiet)
--force
<file> [<file> ...]
差异 diff
显示两个路径之间的差异。
语法 syntax-15
diff -N <file1> [<file2> ...]
选项 options-15
-N (--non-recursive)
<file> [<file> ...]
控制台 console
运行交互式控制台。
语法 syntax-16
console -F <file>
选项 options-16
-F (--console-settings) <file>
Rcp rcp
将节点树从一个远程存储库复制到另一个远程存储库。 <src>
指向源节点,<dst>
指定父节点必须存在的目标路径。 Rcp通过流式传输数据来处理节点。
语法 syntax-17
rcp -q|-r|-b <size>|-t <seconds>|-u|-n|-e <arg1> [<arg2> ...] <src> <dst>
选项 options-17
-q (--quiet)
-r (--recursive)
-b (--batchSize) <size>
-t (--throttle) <seconds>
-u (--update)
-n (--newer)
-e (--exclude) <arg> [<arg> ...]
<src>
<dst>
示例 examples-3
vlt rcp http://localhost:4502/crx/-/jcr:root/content https://admin:admin@localhost:4503/crx/-/jcr:root/content_copy
--exclude
选项需要后跟<src>
和<dst>
参数之前的另一个选项。 例如:vlt rcp -e ".*\.txt" -r
同步 sync
允许您控制保险库同步服务。 如果没有参数,此命令尝试将当前工作目录置于同步控制下。 如果在vlt签出中运行,则它会使用相应的过滤器和主机来配置同步。 如果在vlt签出之外运行,则仅当目录为空时,它才会注册当前文件夹以进行同步。
语法 syntax-18
sync -v|--force|-u <uri> <command> <localPath>
选项 options-18
-v (--verbose)
--force
-u (--uri) <uri>
<command>
<localPath>
状态代码 status-codes
VLT使用的状态代码包括:
- ' '无修改
- 已添加“A”
- “C”冲突
- 已删除“D”
- 已忽略“I”
- 已修改“M”
- 已替换“R”
- '?' 项目不受版本控制
- '!' 缺少项目(由非svn命令删除)或不完整
- '~'版本化项被其他类型的项阻塞
设置FileVault同步 setting-up-filevault-sync
保险库同步服务用于将存储库内容与本地文件系统表示进行同步,反之亦然。 这是通过安装OSGi服务来实现的,该服务将侦听存储库更改并定期扫描文件系统内容。 它使用与Vault相同的序列化格式将存储库内容映射到磁盘。
使用vlt安装服务 installing-the-service-using-vlt
vlt sync install
命令可用于自动安装保险库同步服务包和配置。
包安装在/libs/crx/vault/install
下,配置节点创建于/libs/crx/vault/com.day.jcr.sync.impl.VaultSyncServiceImpl
。 最初启用该服务,但未配置同步根。
以下示例将同步服务安装到可通过给定URI访问的CRX实例。
$ vlt --credentials admin:admin sync --uri http://localhost:4502/crx install
显示服务状态 displaying-the-service-status
status
命令可用于显示有关正在运行的同步服务的信息。"
$ vlt sync status --uri http://localhost:4502/crx
Connecting via JCR remoting to http://localhost:4502/crx/server
Listing sync status for http://localhost:4502/crx/server/-/jcr:root
- Sync service is enabled.
- No sync directories configured.
status
命令不从该服务获取任何实时数据,而是读取/libs/crx/vault/com.day.jcr.sync.impl.VaultSyncServiceImpl
处的配置。添加同步文件夹 adding-a-sync-folder
register
命令用于添加要同步到配置的文件夹。
$ vlt sync register
Connecting via JCR remoting to http://localhost:4502/crx/server
Added new sync directory: /tmp/workspace/vltsync/jcr_root
sync-once
配置之前,register
命令不会触发同步。删除同步文件夹 removing-a-sync-folder
unregister
命令用于从配置中删除要同步的文件夹。
$ vlt sync unregister
Connecting via JCR remoting to http://localhost:4502/crx/server
Removed sync directory: /tmp/workspace/vltsync/jcr_root
配置同步 configuring-synchronization
服务配置 service-configuration
服务运行后,可以使用以下参数对其进行配置:
-
vault.sync.syncroots
:定义同步根的一个或多个本地文件系统路径。 -
vault.sync.fscheckinterval
:应扫描文件系统以查找更改的频率(秒)。 默认值为5秒。 -
vault.sync.enabled
:启用/禁用服务的一般标志。
sling:OsgiConfig
节点(名为com.day.jcr.sync.impl.VaultSyncServiceImpl
)进行配置。同步文件夹配置 sync-folder-configuration
每个同步文件夹将配置和状态存储在三个文件中:
-
.vlt-sync-config.properties
:配置文件。 -
.vlt-sync.log
:日志文件,其中包含有关同步期间执行的操作的信息。 -
.vlt-sync-filter.xml
:定义同步存储库哪些部分的筛选器。 此文件的格式由执行过滤的签出部分描述。
.vlt-sync-config.properties
文件允许您配置以下属性:
已禁用 打开或关闭同步。 默认情况下,此参数设置为false以允许同步。
同步一次 如果不为空,则下次扫描将以给定方向同步文件夹,则将清除参数。 支持两个值:
JCR2FS
:导出JCR存储库中的所有内容并将内容写入本地磁盘。FS2JCR
:将所有内容从磁盘导入JCR存储库。
sync-log 定义日志文件名。 默认情况下,该值为.vlt-sync.log
使用VLT同步进行开发 using-vlt-sync-for-development
要基于同步文件夹设置开发环境,请执行以下操作:
-
使用vlt命令行签出存储库:
code language-shell $ vlt --credentials admin:admin co --force http://localhost:4502/crx dev
note note NOTE 您可以使用过滤器仅签出适当的路径。 有关信息,请参阅执行过滤的签出部分。 -
转到工作副本的根文件夹:
code language-shell $ cd dev/jcr_root/
-
将同步服务安装到存储库:
code language-xml $ vlt sync install Connecting via JCR remoting to http://localhost:4502/crx/server Preparing to install vault-sync-2.4.24.jar... Updated bundle: vault-sync-2.4.24.jar Created new config at /libs/crx/vault/config/com.day.jcr.sync.impl.VaultSyncServiceImpl
-
初始化同步服务:
code language-shell $ vlt sync Connecting via JCR remoting to http://localhost:4502/crx/server Starting initialization of sync service in existing vlt checkout /Users/colligno/Applications/cq5/vltsync/sandbox/dev/jcr_root for http://localhost:4502/crx/server/-/jcr:root Added new sync directory: /Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root The directory /Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root is now enabled for syncing. You might perform a 'sync-once' by setting the appropriate flag in the /Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root/.vlt-sync-config.properties file.
-
编辑
.vlt-sync-config.properties
隐藏文件并配置同步以同步存储库的内容:code language-xml sync-once=JCR2FS
note note NOTE 此步骤将根据您的过滤器配置下载整个存储库。 -
检查日志文件
.vlt-sync.log
以查看进度:code language-xml *** 30.04.2017 14:39:10 A file:///Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root/apps/geometrixx-outdoors/src/core/src/main/java/info/geometrixx/outdoors/ 30.04.2017 14:39:10 A file:///Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root/apps/geometrixx-outdoors/src/core/src/main/java/info/geometrixx/outdoors/core/ 30.04.2017 14:39:10 A file:///Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root/apps/geometrixx-outdoors/src/core/src/main/java/info/geometrixx/outdoors/core/product/ 30.04.2017 14:39:10 A file:///Users/trushton/Applications/aem/vltsync/sandbox/dev/jcr_root/apps/geometrixx-outdoors/src/core/src/main/java/info/geometrixx/outdoors/core/product/GeoProduct.java ***
您的本地文件夹现在与存储库同步。 同步是双向的,因此存储库中的修改将应用于本地同步文件夹,反之亦然。