1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
|
---
title: Developing Vaadin Portlets for Liferay
order: 3
layout: page
---
[[portal.liferay]]
= Developing Vaadin Portlets for Liferay
*_This section has not yet been updated for Vaadin Framework 8._*
A Vaadin portlet requires resources such as the server-side Vaadin libraries, a
theme, and a widget set. You have two basic ways to deploy these: either
globally in Liferay, so that the resources are shared between all Vaadin
portlets, or as self-contained WARs, where each portlet carries their own
resources.
The self-contained way is easier and more flexible to start with, as the
different portlets may have different versions of the resources. Currently, the
latest Maven archetypes support the self-contained portlets, while with portlets
created with the Vaadin Plugin for Eclipse only support globally deployed
resources.
Using shared resources is more efficient when you have multiple Vaadin portlets
on the same page, as they can share the common resources. However, they must use
exactly same Vaadin version. This is recommended for production environments,
where you can even serve the theme and widget set from a front-end server. You
can install the shared resources as described in <<portal.liferay.install>>.
At the time of writing, the latest Liferay release 6.2 is bundled with a version
of Vaadin release 6. If you want to use Vaadin 7 portlets with shared resources,
you first need to remove the old ones as described in <<portal.liferay.remove>>.
[[portal.liferay.profile]]
== Defining Liferay Profile for Maven
When creating a Liferay portlet project with a Maven archetype or the Liferay
IDE, you need to define a Liferay profile. With the Liferay IDE, you can create
it when you create the project, as described in <<portal.liferay.ide>>, but for
creating a project from the Maven archetype, you need to define in manually.
[[portal.liferay.profile.settings]]
=== Defining Profile in [filename]#settings.xml#
Liferay profile can be defined either in the user or in the global
[filename]#settings.xml# file for Maven. The global settings file is located in
[filename]#${MAVEN_HOME}/conf/settings.xml# and the user settings file in
[filename]#${USER_HOME}/.m2/settings.xml#. To create a user settings file, copy
at least the relevant headers and root element from the global settings file.
[subs="normal"]
----
...
<profile>
<id>**liferay**</id>
<properties>
<liferayinstall>**/opt/liferay-portal-6.2-ce-ga2**
</liferayinstall>
<plugin.type>portlet</plugin.type>
<liferay.version>**6.2.1**</liferay.version>
<liferay.maven.plugin.version>**6.2.1**
</liferay.maven.plugin.version>
<liferay.auto.deploy.dir>${liferayinstall}/**deploy**
</liferay.auto.deploy.dir>
<!-- Application server version - here for Tomcat -->
<liferay.tomcat.version>**7.0.42**</liferay.tomcat.version>
<liferay.tomcat.dir>
${liferayinstall}/tomcat-${liferay.tomcat.version}
</liferay.tomcat.dir>
<liferay.app.server.deploy.dir>**${liferay.tomcat.dir}/webapps**
</liferay.app.server.deploy.dir>
<liferay.app.server.lib.global.dir>**${liferay.tomcat.dir}/lib/ext**
</liferay.app.server.lib.global.dir>
<liferay.app.server.portal.dir>**${liferay.tomcat.dir}/webapps/ROOT**
</liferay.app.server.portal.dir>
</properties>
</profile>
----
The parameters are as follows:
liferayinstall:: Full (absolute) path to the Liferay installation directory.
liferay.version:: Liferay version by the Maven version numbering scheme. The first two (major and minor) numbers are same as in the installation package. The third (maintenance) number starts from 0 with first GA (general availability) release.
liferay.maven.plugin.version:: This is usually the same as the Liferay version.
liferay.auto.deploy.dir:: The Liferay auto-deployment directory. It is by default [filename]#deploy# under the Liferay installation path.
liferay.tomcat.version(optional):: If using Tomcat, its version number.
liferay.tomcat.dir:: Full (absolute) path to Tomcat installation directory. For Tomcat bundled with Liferay, this is under the Liferay installation directory.
liferay.app.server.deploy.dir:: Directory where portlets are deployed in the application server used for Liferay. This depends on the server - for Tomcat it is the [filename]#webapps# directory under the Tomcat installation directory.
liferay.app.server.lib.global.dir:: Library path where libraries globally accessible in the application server should be installed.
liferay.app.server.portal.dir:: Deployment directory for static resources served by the application server, under the root path of the server.
If you modify the settings after the project is created, you need to touch the
POM file in the project to have the settings reloaded.
[[portal.liferay.profile.properties]]
=== Activating the Maven Profile
The Maven 2 Plugin for Eclipse (m2e) must know which Maven profiles you use in a
project. This is configured in the [menuchoice]#Maven# section of the project
properties. In the [guilabel]#Active Maven Profiles# field, enter the profile ID
defined in the [filename]#settings.xml# file, as illustrated in
<<figure.portal.liferay.profile.properties>>.
[[figure.portal.liferay.profile.properties]]
.Activating Maven Liferay Profile
image::img/liferay-maven-profile.png[]
[[portal.liferay.project]]
== Creating a Portlet Project with Maven
Creation of Vaadin a Maven project is described in
<<dummy/../../../framework/getting-started/getting-started-maven#getting-started.maven,"Using
Vaadin with Maven">>. For a Liferay project, you should use the
[literal]#++vaadin-archetype-liferay-portlet++#.
[[portal.liferay.project.archetype-parameters]]
=== Archetype Parameters
The archetype has a number of parameters. If you use Maven Plugin for Eclipse
(m2e) to create the project, you get to enter the parameters after selecting the
archetype, as shown in <<figure.portal.liferay.project.archetype-parameters>>.
Minimally, you just need to enter the artifact ID. To activate the Maven profile
created as described earlier in <<portal.liferay.profile>>, you need to specify
the profile in the [guilabel]#Profiles# field under the [guilabel]#Advanced#
section.
[[figure.portal.liferay.project.archetype-parameters]]
.Liferay Project Archetype Parameters
image::img/liferay-maven-project.png[]
The other parameters are the following:
vaadinVersion:: Vaadin release version for the Maven dependency.
uiClassName:: Class name of the UI class stub to be created.
theme:: Theme to use. You can use either a project theme, which must be compiled before deployment, or use one of the default themes.
portletTitle:: Title shown in the portlet title bar.
portletShortTitle:: Title shown in contexts where a shorter title is preferred.
portletKeywords:: Keywords for finding the portlet in Liferay.
portletDescription:: A description of the portlet.
portletName:: Identifier for the portlet, used for identifying it in the configuration files.
portletDisplayName:: Name of the portlet for contexts where it is displayed.
[[portal.liferay.ide]]
== Creating a Portlet Project in Liferay IDE
Liferay IDE, which you install in Eclipse as plugins just like the Vaadin
plugin, enables a development environment for Liferay portlets. Liferay IDE
allows integrated deployment of portlets to Liferay, just like you would deploy
servlets to a server in Eclipse. The project creation wizard supports creation
of Vaadin portlets.
Loading widget sets, themes, and the Vaadin JAR from a portlet is possible as
long as you have a single portlet, but causes a problem if you have multiple
portlets. To solve this, Vaadin portlets need to use a globally installed widget
set, theme, and Vaadin libraries.
__Liferay 6.2, which is the latest Liferay version at the time of publication of
this book, comes bundled with an older Vaadin 6 version. If you want to use
Vaadin 7, you need to remove the bundled version and install the newer one
manually as described in this chapter.__
In these instructions, we assume that you use Liferay bundled with Apache
Tomcat, although you can use almost any other application server with Liferay
just as well. The Tomcat installation is included in the Liferay installation
package, under the [filename]#tomcat-x.x.x# directory.
[[portal.liferay.remove]]
== Removing the Bundled Installation
Before installing a new Vaadin version, you need to remove the version bundled
with Liferay. You need to remove the Vaadin library JAR from the library
directory of the portal and the [filename]#VAADIN# directory from under the root
context. For example, with Liferay bundled with Tomcat, they are usually located
as follows:
* [filename]#tomcat-x.x.x/webapps/ROOT/html/VAADIN#
* [filename]#tomcat-x.x.x/webapps/ROOT/WEB-INF/lib/vaadin.jar#
[[portal.liferay.install]]
== Installing Vaadin Resources
To use common resources needed by multiple Vaadin portlets, you can install them
globally as shared resources as described in the following.
If you are installing Vaadin in a Liferay version that comes bundled with an
older version of Vaadin, you first need to remove the resources as described in
<<portal.liferay.remove>>.
In the following, we assume that you use only the built-in "reindeer" theme in
Vaadin and the default widget set.
. Get the Vaadin installation package from the Vaadin download page
. Extract the following Vaadin JARs from the installation package: [filename]#vaadin-server.jar# and [filename]#vaadin-shared.jar#, as well as the [filename]#vaadin-shared-deps.jar# and [filename]#jsoup.jar# dependencies from the [filename]#lib# folder
. Rename the JAR files as they were listed above, without the version number
. Put the libraries in [filename]#tomcat-x.x.x/webapps/ROOT/WEB-INF/lib/#
. Extract the [filename]#VAADIN# folders from [filename]#vaadin-server.jar#,
[filename]#vaadin-themes.jar#, and [filename]#vaadin-client-compiled.jar# and
copy their contents to [filename]#tomcat-x.x.x/webapps/ROOT/html/VAADIN#.
+
[subs="normal"]
----
[prompt]#$# [command]#cd# tomcat-x.x.x/webapps/ROOT/html
----
+
[subs="normal"]
----
[prompt]#$# [command]#unzip# path-to/vaadin-server-7.1.0.jar 'VAADIN/*'
----
+
[subs="normal"]
----
[prompt]#$# [command]#unzip# path-to/vaadin-themes-7.1.0.jar 'VAADIN/*'
----
+
[subs="normal"]
----
[prompt]#$# [command]#unzip# path-to/vaadin-client-compiled-7.1.0.jar 'VAADIN/*'
----
You need to define the widget set, the theme, and the JAR in the
[filename]#portal-ext.properties# configuration file for Liferay, as described
earlier. The file should normally be placed in the Liferay installation
directory. See Liferay documentation for details on the configuration file.
Below is an example of a [filename]#portal-ext.properties# file:
----
# Path under which the VAADIN directory is located.
# (/html is the default so it is not needed.)
# vaadin.resources.path=/html
# Portal-wide widget set
vaadin.widgetset=com.vaadin.server.DefaultWidgetSet
# Theme to use
# This is the default theme if nothing is specified
vaadin.theme=reindeer
----
The allowed parameters are:
[parameter]#vaadin.resources.path#:: Specifies the resource root path under the portal context. This is
[filename]#/html# by default. Its actual location depends on the portal and the
application server; in Liferay with Tomcat it would be located at
[filename]#webapps/ROOT/html# under the Tomcat installation directory.
[parameter]#vaadin.widgetset#:: The widget set class to use. Give the full path to the class name in the dot
notation. If the parameter is not given, the default widget set is used.
[parameter]#vaadin.theme#:: Name of the theme to use. If the parameter is not given, the default theme is
used, which is [literal]#++reindeer++#.
You will need to restart Liferay after creating or modifying the
[filename]#portal-ext.properties# file.
|