You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

release-notes.html 29KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Vaadin Framework @version@</title>
  6. <link rel="stylesheet" type="text/css" href="css/styles.css" />
  7. <style type="text/css">
  8. .nested-list ol {
  9. counter-reset: item
  10. }
  11. .nested-list li {
  12. display: block
  13. }
  14. .nested-list li:before {
  15. content: counters(item, ".") ". ";
  16. counter-increment: item
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div id="header">
  22. <h1>Vaadin &ndash; thinking of U and I</h1>
  23. <div id="version">
  24. <strong>Version @version@</strong>
  25. </div>
  26. </div>
  27. <!-- /header -->
  28. <div id="content">
  29. <p>Version @version@ built on @builddate@.</p>
  30. <h2 id="tableofcontents">Release Notes for Vaadin Framework
  31. @version@</h2>
  32. <ul>
  33. <li><a href="#overview">Overview of Vaadin Framework
  34. @version@ release</a></li>
  35. <li><a href="#changelog">Change Log for Vaadin Framework
  36. @version@</a></li>
  37. <li><a href="#enhancements">Enhancements in Vaadin Framework
  38. @version-minor@</a></li>
  39. <li><a href="#incompatible">Incompatible or Behavior-altering Changes in
  40. @version-minor@</a></li>
  41. <li><a href="#knownissues">Known Issues and Limitations</a></li>
  42. <li><a href="#starting">Getting started with Vaadin Framework</a></li>
  43. <li><a href="#package">Package Contents</a></li>
  44. <li><a href="#migrating">Migrating from Vaadin 7.7</a></li>
  45. <li><a href="#dependencies">Vaadin Framework @version@
  46. dependencies</a></li>
  47. <li><a href="#supportedversions">Supported
  48. Technologies</a></li>
  49. <li><a href="#vaadinontheweb">Vaadin Framework on the Web</a></li>
  50. </ul>
  51. <h2 id="overview">Overview of Vaadin Framework @version@ Release</h2>
  52. <p>
  53. Vaadin Framework @version@ is a
  54. <!-- feature release that includes -->
  55. pre-release for evaluating
  56. a number of new features and bug fixes, as listed in the <a
  57. href="#enhancements">list of enhancements</a> and <a
  58. href="#changelog">change log</a> below.
  59. With this beta release we will change things based on your feedback
  60. and that may lead to breaking changes.
  61. </p>
  62. <p> Special note for add-on developers: please test your add-on against
  63. Framework 8.0 and update your add-on as needed.
  64. </p>
  65. <!-- ================================================================ -->
  66. <h3 id="changelog">Change Log for Vaadin Framework @version@</h3>
  67. <!-- @release-notes-changelog@ -->
  68. <p>
  69. You can find the full list of all changes <a
  70. href="https://github.com/vaadin/framework/releases/tag/@version@">in
  71. GitHub</a>.
  72. </p>
  73. <h2 id="enhancements">Enhancements in Vaadin Framework @version-minor@</h2>
  74. <p>Vaadin Framework @version-minor@ includes many major and minor
  75. enhancements. Below is a list of the most notable changes:</p>
  76. <ul>
  77. <li>New, simpler data binding API</li>
  78. <li>Vaadin Framework is now based on Java 8</li>
  79. <li>Vaadin Framework is using GWT 2.8, allowing client side code to use Java 8</li>
  80. <li>Other Framework dependencies including Atmosphere have been upgraded</li>
  81. </ul>
  82. <p>
  83. The new data binding API replaces the old <tt>Container</tt>, <tt>Item</tt>, <tt>Property</tt>, <tt>FieldGroup</tt>,
  84. <tt>Validator</tt>, <tt>Converter</tt> and related classes with new mechanisms.
  85. Also components using those are replaced with updated implementations using the
  86. new API, and the old data binding API and components have been moved to separate
  87. compatibility packages for ease of migration.
  88. For more details, see <a href="#incompatible">the list of incompatible changes</a> and <a href="#migrating">how to migrate
  89. to Vaadin Framework 8</a>.
  90. </p>
  91. <p>
  92. For enhancements introduced in Vaadin Framework 7.7, see the <a
  93. href="http://vaadin.com/download/release/7.7/7.7.0/release-notes.html">Release
  94. Notes for Vaadin Framework 7.7.0</a>.
  95. </p>
  96. <h2 id="incompatible">Incompatible or Behavior-altering Changes in @version@</h2>
  97. <ul><h4>Compatibility and requirements</h4>
  98. <li>Vaadin Framework now requires Java 8 or later and Servlet 3.0 or later</li>
  99. <li>Support for older browsers (including Microsoft IE 8-10) and Windows Phone has been dropped</li>
  100. <li><a href="#supportedservers">Supported servers</a></li>
  101. </ul>
  102. <ul><h4>New Data Binding API related changes</h4>
  103. <li>Components using <tt>Property</tt>, <tt>Item</tt> or <tt>Container</tt> API have been reimplemented for the new API, except <tt>Tree</tt>, <tt>Table</tt>, <tt>TreeTable</tt> and <tt>Calendar</tt></li>
  104. <li>Framework 7 versions of the components available in the v7 compatibility package for easier migration, <a href="#legacycomponents">see list of legacy components</a></li>
  105. <li><tt>Binder</tt> is the replacement of <tt>FieldGroup</tt>, and similarly <tt>BeanBinder</tt> is the replacement of <tt>BeanFieldGroup</tt></li>
  106. <li>Converters and Validators have been moved from Components to <tt>Binder</tt></li>
  107. <li><tt>DataProvider</tt> is the replacement of <tt>Container</tt></li>
  108. <ul>
  109. <li><tt>ListDataProvider</tt> is the default in-memory data provider replacing <tt>IndexedContainer</tt>, <tt>BeanItemContainer</tt>, and <tt>BeanContainer</tt></li>
  110. <li><tt>BackEndDataProvider</tt> is the basis for a lazy data provider</li>
  111. <li><tt>SQLContainer</tt> is deprecated in v7 compatibility package and not directly replaced</li>
  112. <li><tt>HierarchicalContainer</tt> is deprecated in v7 compatibility package and a replacement is planned for 8.1</li>
  113. </ul>
  114. <li>All components that list data are based on <tt>Listing / AbstractListing</tt></li>
  115. <li>All <tt>Listing</tt> components have been typed with the type of items they are listing</li>
  116. <li><tt>HasValue</tt> replaces the <tt>Field</tt> interface as the basis for all field components</li>
  117. <li>Field components based on <tt>HasValue</tt> may or may not accept null values, depending on each component. There is no <tt>setNullRepresentation</tt> anymore</li>
  118. <li><tt>AbstractField::setRequired(boolean)</tt> has been replaced with:
  119. <ul>
  120. <li><tt>HasValue::setRequiredIndicatorVisible(boolean)</tt> which only makes the <tt>*</tt> required indicator visible for the component</li>
  121. <li><tt>BindingBuilder::setRequired(String)</tt> adds a "not-empty" validator when used in <tt>Binder</tt> and makes the <tt>*</tt> required indicator visible</li>
  122. </ul>
  123. <li><tt>setItemCaptionGenerator</tt> in <tt>AbstractListing</tt> replaces <tt>setItemCaption</tt>, <tt>setItemCaptionMode</tt> and <tt>setItemCaptionPropertyId</tt> from <tt>AbstractSelect</tt></li>
  124. <li><tt>setItemIconGenerator</tt> in <tt>AbstractListing</tt> replaces <tt>setItemIcon</tt> and <tt>setItemIconPropertyId</tt> from <tt>AbstractSelect</tt></li>
  125. </ul>
  126. <ul><h4>General API changes</h4>
  127. <li>All listeners and most single method interfaces have been marked as <tt>@FunctionalInterface</tt></li>
  128. <li>All components are now immediate, and <tt>AbstractComponent::setImmediate(boolean immediate)</tt> has been removed.</li>
  129. <li>Read-only is now a feature for field components and has been moved from <tt>AbstractComponent</tt> to <tt>HasValue</tt> </li>
  130. <li>Some deprecated/obsolete parts of API have been removed</li>
  131. <li>All addListener/removeListener methods have been removed - replaced with the Java 8 friendly <tt>addClickListener()</tt>, <tt>addValueChangeListener()</tt> etc. instead</li>
  132. <li>All new listeners are unregistered using a <tt>Registration</tt> object returned by <tt>addXyzListener()</tt> rather than with a separate <tt>removeXyzListener()</tt></li>
  133. <li>Input prompts have been replaced with placeholders utilizing the related browser functionality, API is now <tt>setPlaceHolder</tt> instead of <tt>setInputPrompt</tt></li>
  134. <li>Valo is the default theme, instead of Reindeer</li>
  135. <li>Valo is the only included theme, all other themes have been moved to the <tt>compatiblity-themes</tt> package and are available as a separate dependency</li>
  136. <li><tt>SharedState</tt> and the getter methods for it have been added to each component, regardless of whether those are used for anything or not</li>
  137. <li>The old liferay theme (Liferay 6.0 look) has been removed</li>
  138. </ul>
  139. <ul><h4>Component specific API changes</h4>
  140. <li><tt>DateField</tt> replaces old <tt>PopupDateField</tt></li>
  141. <li><tt>DateField</tt> and <tt>InlineDateField</tt> are now based on Java 8 <tt>LocalDate</tt> instead of <tt>Date</tt></li>
  142. <li><tt>DateField</tt> and <tt>InlineDateField</tt> don't support time anymore, meaning the highest resolution for those is <tt>Resolution.DAY</tt></li>
  143. <li><tt>OptionGroup</tt> has been removed and replaced by:</li>
  144. <ul>
  145. <li><tt>CheckBoxGroup</tt> replaces <tt>OptionGroup</tt> in multiselect mode</li>
  146. <li><tt>RadioButtonGroup</tt> replaces <tt>OptionGroup</tt> in single select mode</li>
  147. <ul><tt>OptionGroup::setItemEnabled(Object, boolean)</tt> has been replaced by <tt>setItemEnabledProvider</tt> that accepts a predicate</ul>
  148. </ul>
  149. <li><tt>TwinColSelect</tt> is always in multiselect mode</li>
  150. <li><tt>ListSelect</tt> is always in multiselect mode</li>
  151. <li><tt>Upload</tt> has a separate immediate mode <tt>setImmediateMode(boolean)</tt> replacing <tt>setImmediate</tt> and is now by default in immediate mode</li>
  152. <li><tt>RichTextArea</tt> no longer receives a special "v-richtextarea-readonly" class when readonly, only the standard "v-readonly" class</li>
  153. <li><tt>Grid</tt> has been typed to the bean type it is using and its columns are specified with a value provider callback instead of "propertyId"</li>
  154. <li><tt>Grid</tt> Editor now uses <tt>Binder</tt> instead of <tt>FieldGroup</tt>, and doesn't support a <tt>FieldFactory</tt></li>
  155. <li><tt>Grid</tt> selection API has been removed from component level to <tt>GridSelectionModel</tt> which is available via <tt>Grid::getSelectionModel()</tt></li>
  156. <li><tt>Grid::setSelectionModel(GridSelectionModel)</tt> visibility has been changed from <tt>public</tt> to <tt>protected</tt> to reduce confusion with <tt>Grid::setSelectionMode</tt></li>
  157. </ul>
  158. <ul><h4>Component specific visual changes</h4>
  159. <li>The default width of <tt>Label</tt> is now undefined, matching other components</li>
  160. <li>The default width for <tt>ComboBox</tt> pop-up is now 100 % (previously undefined)</li>
  161. <li><tt>VerticalLayout</tt> has by default <tt>spacing = true</tt> and <tt>margin = true</tt></li>
  162. <li><tt>HorizontalLayout</tt> has by default <tt>spacing = true</tt> and <tt>margin = false</tt></li>
  163. </ul>
  164. <ul><h4>Component specific declarative syntax changes</h4>
  165. <li>Components in the compatibility packages now use the prefix <tt>vaadin7-"</tt> in declarative design files</li>
  166. <li><tt>required-indicator-visible</tt> attribute replaces the <tt>required</tt> attribute</li>
  167. <li><tt>placeholder</tt> attribute replaces the <tt>input-prompt</tt> attribute for input components</li>
  168. <li><tt>multi-select</tt> attribute is no longer used for select components</li>
  169. <li><tt>vaadin-option-group</tt> with attribute <tt>multi-select=true</tt> is replaced by <tt>v-check-box-group</tt></li>
  170. <li><tt>vaadin-option-group</tt> with attribute <tt>multi-select=false</tt> is replaced by <tt>v-radio-button-group</tt></li>
  171. <li><tt>immediate</tt> attribute is not used for any component</li>
  172. <li><tt>read-only</tt> attribute is now only used for field components instead of all components</li>
  173. <li><tt>vaadin-upload</tt> has a new attribute <tt>immediate-mode</tt> that replaces the removed <tt>immediate</tt> attribue</li>
  174. <li><tt>vaadin-grid</tt> column elements don't have <tt>property-id</tt> attribute anymore. Columns aren't addressed by a property anymore but they have an id. So there is <tt>column-id</tt> attribute instead</li>
  175. <li><tt>vaadin-grid</tt> doesn't have <tt>readonly</tt> attribute anymore. It is replaced by <tt>selection-allowed</tt> attribute which has special meaning for a <tt>Grid</tt></li>
  176. </ul>
  177. <ul id="legacycomponents"><h4>Legacy components in the v7 compatiblity package <tt>com.vaadin.v7.ui</tt> available as a separate dependency</h4>
  178. <li><tt>Calendar</tt> - no replacement in 8</li>
  179. <li><tt>CheckBox</tt></li>
  180. <li><tt>ColorPicker</tt></li>
  181. <li><tt>ColorPickerArea</tt></li>
  182. <li><tt>ComboBox</tt></li>
  183. <li><tt>CustomField</tt></li>
  184. <li><tt>DateField</tt> - the replacing 8 version does not support selecting time</li>
  185. <li><tt>Form</tt> - no replacement in 8</li>
  186. <li><tt>Grid</tt> (and renderers)</li>
  187. <li><tt>HorizontalLayout</tt></li>
  188. <li><tt>InlineDateField</tt> - the replacing 8 version does not support selecting time</li>
  189. <li><tt>Label</tt></li>
  190. <li><tt>ListSelect</tt></li>
  191. <li><tt>NativeSelect</tt></li>
  192. <li><tt>OptionGroup</tt> - replaced by <tt>CheckBoxGroup</tt> (multiselection) and <tt>RadioButtonGroup</tt> (single selection)</li>
  193. <li><tt>PasswordField</tt></li>
  194. <li><tt>PopupDateField</tt> - replaced by partly by <tt>DateField</tt>, but doesn't allow selecting time</li>
  195. <li><tt>ProgressBar</tt></li>
  196. <li><tt>ProgressIndicator</tt></li>
  197. <li><tt>RichTextArea</tt></li>
  198. <li><tt>Select</tt> - removed, use <tt>ComboBox</tt> for single selection and <tt>ListSelect</tt> for multiselection</li>
  199. <li><tt>Table</tt> - no replacement in 8.0, use Grid.</li>
  200. <li><tt>TextArea</tt></li>
  201. <li><tt>TextField</tt></li>
  202. <li><tt>Tree</tt> - no replacement in 8.0, planned for 8.1</li>
  203. <li><tt>TreeTable</tt> - no replacement in 8.0, TreeGrid planned for 8.1</li>
  204. <li><tt>TwinColSelect</tt></li>
  205. <li><tt>VerticalLayout</tt></li>
  206. <li><tt>Upload</tt></li>
  207. </ul>
  208. <h3 id="knownissues">Known Issues and Limitations</h3>
  209. <ul>
  210. <li>Drag'n'drop in a Table doesn't work on touch devices running
  211. Internet Explorer (Windows Phone, Surface)
  212. (<a href="https://github.com/vaadin/framework/issues/5170">#5170</a>)
  213. </li>
  214. <li>Specifying layout sizes using <tt>em</tt> is currently discouraged, because it results in fractional
  215. components sizes in many cases, which might cause unwanted 1px gaps between components.
  216. </li>
  217. <li>Up-to-date information about configuration needed for push and compatibility issues are available in
  218. <a href="https://vaadin.com/wiki/-/wiki/Main/Configuring+push+for+your+environment">this wiki page.</a>
  219. <br />
  220. The most prominent limitations are:
  221. <ul>
  222. <li>Push is currently not supported in portals (See <a
  223. href="https://github.com/vaadin/framework/issues/3741">#3741</a>)
  224. </li>
  225. <li>>Transport mode WEBSOCKET does not support invalidating the session on Tomcat 7,
  226. nor setting cookies for the session. The new transport mode WEBSOCKET_XHR can be
  227. used to bypass these limitations.
  228. <br />
  229. See tickets <a href="https://github.com/vaadin/framework/issues/3911">#3911</a> and
  230. <a href="https://github.com/vaadin/framework/issues/3861">#3861</a>
  231. </li>
  232. </ul>
  233. </li>
  234. <li>Google App Engine has some limitations. Please consult Vaadin Wiki:
  235. <a href="https://vaadin.com/wiki/-/wiki/Main/Vaadin+support+for+Google+App+Engine">Vaadin support for Google App Engine</a>
  236. </li>
  237. <li>Grid does not support adding components to cells. Instead light-weight Renderers can be
  238. used to present and edit data.</li>
  239. </ul>
  240. <h2 id="starting">Getting started with Vaadin Framework</h2>
  241. <p>
  242. <b>Vaadin Framework</b> is a Java framework for building modern web
  243. applications that look great, perform well and make you and
  244. your users happy. <b>The Framework</b> is available under the
  245. Apache License, Version 2.0 (see the
  246. <tt>license.html</tt>
  247. in the Vaadin Framework ZIP package).
  248. </p>
  249. <p>
  250. The easiest ways to start using <b>Vaadin Framework</b> are:
  251. </p>
  252. <ul>
  253. <li><strong>Maven dependency.</strong>If using Maven, define it as a dependency or use
  254. any of the available archetypes to create a new project. More information at
  255. <a href="https://vaadin.com/maven">https://vaadin.com/maven</a>
  256. </li>
  257. <li><strong>IDE Plugins.</strong>If using Eclipse, use the
  258. <a href="http://vaadin.com/eclipse">Vaadin Plugin for Eclipse</a>, which automatically
  259. downloads the Framework libraries. For NetBeans 8.0 and 7.4, use the
  260. <a href="http://plugins.netbeans.org/plugin/50531/vaadin-plug-in-for-netbeans">official Vaadin plugin</a>
  261. that provides Maven based wizards and code completion support for Vaadin Framework based development.
  262. </li>
  263. </ul>
  264. <p>
  265. Vaadin Framework is also available as a ZIP package downloadable from <a
  266. href="http://vaadin.com/download">Vaadin Download
  267. page</a>.
  268. </p>
  269. <h3 id="package">Package Contents</h3>
  270. <p>Inside the ZIP installation package you will find:</p>
  271. <ul>
  272. <li>Separate server-side (<tt>vaadin-server</tt>) and
  273. client-side (<tt>vaadin-client</tt>, <tt>vaadin-client-compiler</tt>)
  274. development libraries
  275. </li>
  276. <li>Precompiled widget set (<tt>vaadin-client-compiled</tt>)
  277. for server-side development
  278. </li>
  279. <li>Shared library (<tt>vaadin-shared</tt>) for both
  280. server- and client-side libraries
  281. </li>
  282. <li>Valo theme (the only inbuilt theme) (<tt>vaadin-themes</tt>)
  283. </li>
  284. <li>Dependency libraries provided under the <tt>lib/</tt>
  285. folder
  286. </li>
  287. <li>Vaadin 7 compatible classes for server-side (<tt>vaadin-compatibility-server</tt>,
  288. <tt>vaadin-compatibility-shared</tt>), client-side (<tt>vaadin-compatibility-client</tt>) and themes (<tt>vaadin-compatibility-themes</tt>)
  289. </li>
  290. </ul>
  291. <p>
  292. See the
  293. <tt>README.TXT</tt>
  294. in the installation package for detailed information about
  295. the package contents.
  296. </p>
  297. <p>
  298. For server-side development, copy the
  299. <tt>vaadin-server</tt>
  300. ,
  301. <tt>vaadin-client-compiled</tt>
  302. ,
  303. <tt>vaadin-shared</tt>
  304. , and
  305. <tt>vaadin-themes</tt>
  306. from the main folder and the dependencies from the
  307. <tt>lib</tt>
  308. folder to the
  309. <tt>WEB-INF/lib</tt>
  310. folder of your Vaadin project. (The
  311. <tt>vaadin-client-compiled</tt>
  312. is necessary if you do not wish to compile the widget set by
  313. your own, which you need to do if you use almost any add-on
  314. components.)
  315. </p>
  316. <h2 id="migrating">Migrating from Vaadin Framework 7.7</h2>
  317. <p>
  318. Most Vaadin Framework 7 applications need some changes when migrating
  319. to Vaadin Framework 8. In addition to updating dependencies, all references to
  320. Framework 7 style data binding and components using it need to be
  321. updated either to use new Framework 8 style data binding or to use the
  322. compatibility versions in separate packages.
  323. </p>
  324. <p>
  325. Vaadin Framework 7 compatible versions of the old data binding API and
  326. components (with the exception of Form) are available in the package
  327. com.vaadin.v7 in modules vaadin-compatibility-server,
  328. vaadin-compatibility-shared etc. that can be used instead of
  329. vaadin-server, vaadin-shared etc. The package
  330. vaadin-compatibility-client-compiled contains the widgetset
  331. <tt>com.vaadin.v7.Vaadin7WidgetSet</tt> which can be used instead of
  332. <tt>DefaultWidgetSet</tt>.
  333. </p>
  334. <p>
  335. All applications using either <tt>Reindeer</tt>, <tt>Runo</tt>, <tt>Chameleon</tt> or <tt>Base</tt> theme must include the <tt>vaadin-compability-themes</tt> package.
  336. </p>
  337. <p>
  338. There is a <a href="https://github.com/vaadin/framework8-migration-tool/">
  339. migration tool</a> which helps with some of the migration steps.
  340. </p>
  341. <p>
  342. Some Vaadin Framework 7 add-ons do not work in version 8 - please check the add-ons in <a
  343. href="http://vaadin.com/directory/">Vaadin Directory</a>
  344. for Framework version 8 support.
  345. </p>
  346. <h3 id="upgrading">Common Upgrade Steps</h3>
  347. <p>Always when upgrading from an earlier Vaadin Framework version, you
  348. must:</p>
  349. <ul>
  350. <li>Recompile your classes using the new Framework
  351. version. Binary compatibility is only guaranteed for
  352. maintenance releases of Framework.</li>
  353. <li>Unless using the precompiled widget set, recompile
  354. your widget set using the new Framework version.</li>
  355. </ul>
  356. <p>Remember also to refresh the project in your IDE to
  357. ensure that the new version of everything is in use.</p>
  358. <p>
  359. By using the "
  360. <tt>?debug</tt>
  361. " URL parameter, you can verify that the version of the
  362. servlet, the theme, and the widget set all match.
  363. </p>
  364. <p>
  365. <b>Eclipse</b> users should always check if there is a new
  366. version of the Eclipse Plug-in available.
  367. </p>
  368. <p>
  369. <b>Maven</b> users should update the Vaadin Framework dependency
  370. version in the
  371. <tt>pom.xml</tt>
  372. .
  373. </p>
  374. <h2 id="dependencies">Vaadin Framework @version@ Dependencies</h2>
  375. <p>When using Maven, Ivy, Gradle, or other dependency
  376. management system, all Framework dependencies are downloaded
  377. automatically. This is also the case when using the Vaadin
  378. Plugin for Eclipse.</p>
  379. <p>
  380. The Vaadin Framework ZIP installation package includes the
  381. dependencies in the
  382. <tt>lib</tt>
  383. subfolder. These need to be copied to the
  384. <tt>WEB-INF/lib</tt>
  385. folder of the web application that uses Vaadin Framework.
  386. </p>
  387. <p>
  388. The dependencies are listed in the <a href="license.html">Licensing
  389. description</a>. Some are explicit dependencies packaged and
  390. distributed as separate JARs, while some are included inside
  391. other libraries.
  392. </p>
  393. <h3>Bean Validation</h3>
  394. <p>
  395. If you use the bean validation feature, you need
  396. a Bean Validation API implementation. You need to install
  397. the implementation JAR in the
  398. <tt>WEB-INF/lib</tt>
  399. directory of the web application that uses validation.
  400. </p>
  401. <h2 id="supportedversions">Supported Technologies</h2>
  402. <p>
  403. Vaadin Framework 8 is compatible with <b>Java 8</b> and newer. Vaadin Framework
  404. 8 is especially supported on the following <b>operating
  405. systems</b>:
  406. </p>
  407. <ul>
  408. <li>Windows</li>
  409. <li>Linux</li>
  410. <li>Mac OS X</li>
  411. </ul>
  412. <p>
  413. Vaadin Framework 8 requires <b>Java Servlet API 3.0</b> but also
  414. supports later versions and should work with any Java
  415. application server that conforms to the standard. The
  416. following <b>application servers</b> are supported:
  417. </p>
  418. <ul id="supportedservers">
  419. <li>Apache Tomcat 7-8</li>
  420. <li>Apache TomEE 1.7 and 7.0</li>
  421. <li>Oracle WebLogic Server 12.2</li>
  422. <li>IBM WebSphere Application Server 9</li>
  423. <li>JBoss EAP 6</li>
  424. <li>Wildfly 8-10</li>
  425. <li>Jetty 8-9</li>
  426. <li>Glassfish 4</li>
  427. </ul>
  428. <p>
  429. Vaadin Framework 8 supports the JSR-286 Portlet specification and all
  430. portals that implement the specification should work provided
  431. they support Java 8 and Servlet 3.0. The following <b>portals</b>
  432. are supported:
  433. </p>
  434. <ul>
  435. <li>Liferay Portal 6.2</li>
  436. </ul>
  437. <p>
  438. Vaadin Framework also supports <b>Google App Engine</b>.
  439. </p>
  440. <p>
  441. Vaadin Framework @version@ supports the following <b>desktop browsers</b>:
  442. </p>
  443. <ul>
  444. <li>Mozilla Firefox (latest version, currently 48)</li>
  445. <li>Mozilla Firefox ESR (latest version, currently 45 ESR)</li>
  446. <li>Internet Explorer 11, Edge (latest version)</li>
  447. <li>Safari 9+</li>
  448. <li>Google Chrome (latest version, currently 52)</li>
  449. </ul>
  450. <p>
  451. Additionally, Vaadin Framework supports the built-in browsers in the
  452. following <b>mobile operating systems</b>:
  453. </p>
  454. <ul>
  455. <li>iOS 9+</li>
  456. <li>Android 4+ with Chrome 42+</li>
  457. </ul>
  458. <h2 id="vaadinontheweb">Vaadin on the Web</h2>
  459. <ul>
  460. <li><a href="http://vaadin.com">vaadin.com - The
  461. developer portal containing everything you need to
  462. know about Vaadin</a></li>
  463. <li><a href="http://vaadin.com/demo">vaadin.com/demo
  464. - A collection of demos for Vaadin Framework</a></li>
  465. <li><a href="http://vaadin.com/learn">vaadin.com/learn
  466. - Getting started with Vaadin Framework</a></li>
  467. <li><a href="http://vaadin.com/forum">vaadin.com/forum
  468. - Forums for Vaadin Framework related discussions</a></li>
  469. <li><a href="http://vaadin.com/book">vaadin.com/book
  470. - Book of Vaadin - everything you need to know about
  471. Vaadin Framework</a></li>
  472. <li><a href="http://vaadin.com/api">vaadin.com/api
  473. - Online javadocs</a></li>
  474. <li><a href="http://vaadin.com/directory">vaadin.com/directory
  475. - Add-ons for Vaadin Framework</a></li>
  476. <li><a href="http://vaadin.com/pro-tools">vaadin.com/pro-tools
  477. - Commercial tools for Vaadin Framework</a></li>
  478. <li><a href="http://vaadin.com/support">vaadin.com/support
  479. - Commercial support for Vaadin Framework</a></li>
  480. <li><a href="http://vaadin.com/services">vaadin.com/services
  481. - Expert services for Vaadin Framework users</a></li>
  482. <li><a href="http://vaadin.com/company">vaadin.com/company
  483. - Information about the company behind Vaadin Framework</a></li>
  484. <li><a href="https://vaadin.com/contribute">vaadin.com/contribute - Contribution quide</a></li>
  485. <li><a href="https://github.com/vaadin/framework/issues">github.com/vaadin/framework - Github repository</a></li>
  486. </ul>
  487. </div>
  488. <!-- /content-->
  489. <div id="footer">
  490. <span class="slogan"><strong>vaadin <em>}></em>
  491. </strong> thinking of U and I<span> <a href="#top">&uarr; Back
  492. to top</a>
  493. </div>
  494. <!-- /footer -->
  495. </body>
  496. </html>
  497. <!-- Keep this comment at the end of the file
  498. Local variables:
  499. mode: xml
  500. sgml-omittag:nil
  501. sgml-shorttag:nil
  502. sgml-namecase-general:nil
  503. sgml-general-insert-case:lower
  504. sgml-minimize-attributes:nil
  505. sgml-always-quote-attributes:t
  506. sgml-indent-step:2
  507. sgml-indent-data:t
  508. sgml-parent-document:nil
  509. sgml-exposed-tags:nil
  510. sgml-local-catalogs:("/etc/sgml/catalog" "/usr/share/xemacs21/xemacs-packages/etc/psgml-dtds/CATALOG")
  511. sgml-local-ecat-files:("ECAT" "~/sgml/ECAT" "/usr/share/sgml/ECAT" "/usr/local/share/sgml/ECAT" "/usr/local/lib/sgml/ECAT")
  512. End:
  513. -->