Developing with CRXDE Lite
- Topics:
- Developing,Developer Tools
CREATED FOR:
- Developer
This section describes how to develop your Adobe Experience Manager (AEM) application using CRXDE Lite.
Seethe overview documentation for more information on the different development environments that are available.
CRXDE Lite is embedded into AEM and enables you to perform standard development tasks in the browser. With CRXDE Lite, you can create a project, create, and edit files (like .jsp and .java), folders, templates, components, dialogs, nodes, properties, and bundles while logging.
CRXDE Lite is recommended when you do not have direct access to the AEM server. Or, when you develop an application by extending or modifying the out-of-the-box components and Java™ bundles, or when you do not need a dedicated debugger, code completion and syntax highlighting.
Users are redirected to the login screen.
Getting Started with CRXDE Lite
To get started with CRXDE Lite, proceed as follows:
-
Install AEM.
-
In your browser, enter
https://<host>:<port>/crx/de
. By default it ishttps://localhost:4502/crx/de
. -
Enter your username and password. By default it is
admin
andadmin
. -
Click OK.
The CRXDE Lite User Interface looks as follows in your browser:
You can now use CRXDE Lite to develop your application.
Overview of the User Interface
CRXDE Lite offers the following functionality:
Displays the path to the selected node.
You can also use it to jump to a node, by entering the path by hand, or pasting it from somewhere else, and hitting Enter.
It also provides support looking for nodes with a specific node name. Enter the name of the node that you would like to find, and wait (or hit the search symbol on the right-hand side). You can try entering, for example, the string oak into the widget to see how it works. If a given node or nodes is loaded into the explorer pane, the list is displayed, and you can select the path and hit Enter to navigate to it. It only works for the nodes loaded into the CRXDE client application in the browser. If you want to search the whole repository, use Tools, then Query.
Displays a tree of all the nodes in the repository.
Click a node so you can display its properties in the Properties tab. After clicking a node, you can select an action in the toolbar. Click the node again to rename it.
Tree Navigation Filter (binocular icon): enables you to filter the nodes in the repository for which the name contains the input text. It only applies to nodes that have been loaded locally.
Home tab: lets you search content and/or documentation and access developer resources (documentation, developer blog, knowledge base) and support (Adobe homepage and support center).
Double-click a file in the Explorer pane so you can display its content. For example, a .jsp or a .java file. You can then modify it and save the changes.
Once a file is edited in the Edit pane, the following tools are available on the toolbar:
- Show in tree: shows the file in the repository tree.
- Search/Replace ...: do search or replace.
Double-click the status line of the Edit pane opens the Go to line dialog so you can enter a specific line number to go to.
Display permissions based on the path, repository-level, or principal.
The permissions are broken down into
- Applicable Access Control Policy: The policies that can be applied to the selection.
- Local Access Control Policies: The policies applied locally to the selection.
- Effective Access Control Policies: The policies applied for the selection, might be set locally or inherited from parent nodes.
Note. To be able to see the Access Control information at all, the user logged in to CRXDE Lite must have read-rights to ACL entries. The anonymous user cannot see this information by default - log in as admin to see the information, for example.
Server Logs:
Displays logs messages. You can configure the log level, clear the console, pin at the selected scroll position, and enable or disable the displaying of messages.
Version Control:
Displays version control messages.
Save All:
Saves all the changes that you have made. Until you click save, the changes are temporary, and are lost when you exit the console.
Revert:
Discards all the changes that you have made on the selected node since the last save action, then reloads the state of the repository for the selected node.
Revert All:
Discards all the changes that you have made throughout the entire repository since the last save action, then reloads the state of the repository.
Drop-down menu to create the following under the selected node:
- Node: a node with an arbitrary node type
- File: nt:file node and its nt:resource subnode
- Folder: nt:folder node
- Template: AEM template
- Component: AEM component
- Dialog: AEM dialog
Drop-down menu with the following tools:
- Server Config ...: to access the Felix Console.
- Query ...: to query the repository.
- Privileges ...: to open privilege management, where you can view and add privileges.
- Test Access Control ...: a place where you can test the permission for a certain path and/or principal.
- Export Node Type: to export node types in the system as cnd notation.
- Import Node Type ...: to import node types using cnd notation.
- Install SiteCatalyst Debugger ...: instructions on how to install Analytics Debugger.
Displays the logged-in users and the workspace that they are logged into, for example, admin@crx.default.
Click it to log in or relogin as a specific user. If you do not specify a workspace to log in to, you are logged into the default workspace, crx.default.
If you want to browse the repository as an Anonymous user, use anonymous as the login name, and any password (for example, a space or a dot).
If your authorization is no longer valid (for example, it is expired), the login widget displays "Unauthorized - Login...". Click it to log in again.
Creating a Folder
To create a folder with CRXDE Lite:
-
Open CRXDE Lite in your browser.
-
In the Navigation pane, right-click the folder under which you want to create the folder, select Create …, then Create Folder ….
-
Enter the folder Name and click OK.
-
Click Save All to save the changes on the server.
Creating a Template
To create a template with CRXDE Lite:
-
Open CRXDE Lite in your browser.
-
In the Navigation pane, right-click the folder where you want to create the template, select Create …, then Create Template ….
-
Enter the Label, Title, Description, Resource Type, and Ranking of the template. Click Next.
-
This step is optional: set the Allowed Paths. Click Next
-
This step is optional: set the Allowed Parents. Click Next.
-
This step is optional: set the Allowed Children. Click OK.
-
Click Save All to save the changes on the server.
It creates:
-
A node of type
cq:Template
with Template properties -
A child node of type
cq:PageContent
with Page Content properties
You can add properties to your template: see the Creating a Property section.
Creating a Component
The feature described here is only available if CQ5 is installed, that is if the node type cq:Component
is available in the repository.
To create a component with CRXDE Lite:
-
Open CRXDE Lite in your browser.
-
In the Navigation pane, right-click the folder where you want to create the component, select Create …, then Create Component ….
-
Enter the Label, Title, Description, Super Resource Type, and Group of the component. Click Next.
-
This step is optional: set the component properties Is Container, No Decoration, Cell Name, and Dialog Path. Click Next.
-
This step is optional: set the component property Allowed Parents. Click Next.
-
This step is optional: set the component property Allowed Children. Click OK.
-
Click Save All to save the changes on the server.
It creates:
- A node of type
cq:Component
- Component properties
- A component .jsp script
Creating a Dialog
To create a dialog with CRXDE Lite:
-
Open CRXDE Lite in your browser.
-
In the Navigation pane, right-click the component where you want to create the dialog, select Create …, then Create Dialog ….
-
Enter the Label and the Title. Click OK.
-
Click Save Al l to save the changes on the server.
It creates a dialog with the following structure:
dialog[cq:Dialog]/items[cq:Widget]/items[cq:WidgetCollection]/tab1[cq:Panel]
You can now adapt the dialog to your needs by modifying properties or creating nodes.
You can also use the Dialog Editor to edit a dialog. Double-clicking the dialog node in CRXDE Lite brings up the editor. See Dialog Editor for more details.
Creating a Node
To create a node with CRXDE Lite:
- Open CRXDE Lite in your browser.
- In the Navigation pane, right-click the node where you want to create the node, select Create …, then Create Node ….
- Enter the Name and the Type. Click OK.
- Click Save All to save the changes on the server.
You can now adapt the node to your needs by modifying properties or creating nodes.
nt:unstructured
node as a child of nt:folder
node).Creating a Property
To create a property with CRXDE Lite:
-
Open CRXDE Lite in your browser.
-
In the Navigation pane, select the node where you want to add the new property.
-
In the Properties tab in the bottom pane, enter the Name, the Type, and the Value. Click Add.
-
Click Save All to save the changes on the server.
Creating a Script
To create a script:
-
Open CRXDE Lite in your browser.
-
In the Navigation pane, right-click the component where you want to create the script, select Create …, then Create File ….
-
Enter the File Name including its extension. Click OK.
-
The new file opens as a tab in the Edit pane.
-
Edit the file.
-
Click Save All to save the changes.
Exporting and Importing Node Types
With CRXDE Lite, you can import and/or export node type definitions in CND (Compact Namespace and Node Type Definition) notation.
To export a node type definition:
-
Open CRXDE Lite in your browser.
-
Select your required node.
-
Select Tools then Export Node Type.
-
The definition, in cnd notation, is displayed in your browser. Save the information, if necessary.
To import a node type definition:
-
Open CRXDE Lite in your browser.
-
Select Tools then Import Node Type….
-
Enter the CND notation for the definition in the text box.
-
Check Allow Update if you are updating an existing definition.
-
Click Import.
Logging
With CRXDE Lite, you can display the file error.log
that is on the file system at <crx-install-dir>/crx-quickstart/server/logs
and filter it with the appropriate log level. Proceed as follows:
-
Open CRXDE Lite in your browser.
-
In the Console tab at the bottom of the window, in the drop-down menu on the right, select Server Logs.
-
Click the Stop icon to display the messages.
You can:
- Adjust the log parameters in the Felix Console by clicking the Logging Configurations icon.
- Clear the messages by clicking the Brush icon.
- Pin the message at the selection by clicking the Pin icon.
- Enable or disable the displaying of messages by clicking the Stop icon.