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 30KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  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>Support for Google App Engine has been dropped</li>
  101. <li><a href="#supportedservers">Supported servers</a></li>
  102. </ul>
  103. <ul><h4>New Data Binding API related changes</h4>
  104. <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>
  105. <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>
  106. <li><tt>Binder</tt> is the replacement of <tt>FieldGroup</tt>, and similarly <tt>BeanBinder</tt> is the replacement of <tt>BeanFieldGroup</tt></li>
  107. <li>Converters and Validators have been moved from Components to <tt>Binder</tt></li>
  108. <li><tt>DataProvider</tt> is the replacement of <tt>Container</tt></li>
  109. <ul>
  110. <li><tt>ListDataProvider</tt> is the default in-memory data provider replacing <tt>IndexedContainer</tt>, <tt>BeanItemContainer</tt>, and <tt>BeanContainer</tt></li>
  111. <li><tt>BackEndDataProvider</tt> is the basis for a lazy data provider</li>
  112. <li><tt>SQLContainer</tt> is deprecated in v7 compatibility package and not directly replaced</li>
  113. <li><tt>HierarchicalContainer</tt> is deprecated in v7 compatibility package and a replacement is planned for 8.1</li>
  114. </ul>
  115. <li>All components that list data are based on <tt>Listing / AbstractListing</tt></li>
  116. <li>All <tt>Listing</tt> components have been typed with the type of items they are listing</li>
  117. <li><tt>HasValue</tt> replaces the <tt>Field</tt> interface as the basis for all field components</li>
  118. <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>
  119. <li><tt>AbstractField::setRequired(boolean)</tt> has been replaced with:
  120. <ul>
  121. <li><tt>HasValue::setRequiredIndicatorVisible(boolean)</tt> which only makes the <tt>*</tt> required indicator visible for the component</li>
  122. <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>
  123. </ul>
  124. <li><tt>setItemCaptionGenerator</tt> in <tt>AbstractListing</tt> replaces <tt>setItemCaption</tt>, <tt>setItemCaptionMode</tt> and <tt>setItemCaptionPropertyId</tt> from <tt>AbstractSelect</tt></li>
  125. <li><tt>setItemIconGenerator</tt> in <tt>AbstractListing</tt> replaces <tt>setItemIcon</tt> and <tt>setItemIconPropertyId</tt> from <tt>AbstractSelect</tt></li>
  126. </ul>
  127. <ul><h4>General API changes</h4>
  128. <li>All listeners and most single method interfaces have been marked as <tt>@FunctionalInterface</tt></li>
  129. <li>All components are now immediate, and <tt>AbstractComponent::setImmediate(boolean immediate)</tt> has been removed.</li>
  130. <li>Read-only is now a feature for field components and has been moved from <tt>AbstractComponent</tt> to <tt>HasValue</tt> </li>
  131. <li>Some deprecated/obsolete parts of API have been removed</li>
  132. <li>All addListener/removeListener methods have been removed - replaced with the Java 8 friendly <tt>addClickListener()</tt>, <tt>addValueChangeListener()</tt> etc. instead</li>
  133. <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>
  134. <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>
  135. <li>Valo is the default theme, instead of Reindeer</li>
  136. <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>
  137. <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>
  138. <li>The old liferay theme (Liferay 6.0 look) has been removed</li>
  139. <li>FontAwesome icon constants have been deprecated, and will be moved to <tt>compability-server</tt> before 8.0 final. They will be replaced with <a href="https://vaadin.com/icons">Vaadin icons</a> in an upcoming beta</li>
  140. </ul>
  141. <ul><h4>Component specific API changes</h4>
  142. <li><tt>DateField</tt> replaces old <tt>PopupDateField</tt></li>
  143. <li><tt>DateField</tt> and <tt>InlineDateField</tt> are now based on Java 8 <tt>LocalDate</tt> instead of <tt>Date</tt></li>
  144. <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>
  145. <li><tt>OptionGroup</tt> has been removed and replaced by:</li>
  146. <ul>
  147. <li><tt>CheckBoxGroup</tt> replaces <tt>OptionGroup</tt> in multiselect mode</li>
  148. <li><tt>RadioButtonGroup</tt> replaces <tt>OptionGroup</tt> in single select mode</li>
  149. <ul><tt>OptionGroup::setItemEnabled(Object, boolean)</tt> has been replaced by <tt>setItemEnabledProvider</tt> that accepts a predicate</ul>
  150. </ul>
  151. <li><tt>TwinColSelect</tt> is always in multiselect mode</li>
  152. <li><tt>ListSelect</tt> is always in multiselect mode</li>
  153. <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>
  154. <li><tt>RichTextArea</tt> no longer receives a special "v-richtextarea-readonly" class when readonly, only the standard "v-readonly" class</li>
  155. <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>
  156. <li><tt>Grid</tt> Editor now uses <tt>Binder</tt> instead of <tt>FieldGroup</tt>, and doesn't support a <tt>FieldFactory</tt></li>
  157. <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>
  158. <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>
  159. </ul>
  160. <ul><h4>Client side widget specific API changes</h4>
  161. <li><tt>VTextualDate</tt></li> widget class is removed and replaced by abstract <tt>VAbstractTextualDate</tt> class which is supposed to be inherited by concrete date field implementation widgets
  162. </ul>
  163. <ul><h4>Component specific visual changes</h4>
  164. <li>The default width of <tt>Label</tt> is now undefined, matching other components</li>
  165. <li>The default width for <tt>ComboBox</tt> pop-up is now 100 % (previously undefined)</li>
  166. <li><tt>VerticalLayout</tt> has by default <tt>spacing = true</tt> and <tt>margin = true</tt></li>
  167. <li><tt>HorizontalLayout</tt> has by default <tt>spacing = true</tt> and <tt>margin = false</tt></li>
  168. </ul>
  169. <ul><h4>Component specific declarative syntax changes</h4>
  170. <li>Components in the compatibility packages now use the prefix <tt>vaadin7-"</tt> in declarative design files</li>
  171. <li><tt>required-indicator-visible</tt> attribute replaces the <tt>required</tt> attribute</li>
  172. <li><tt>placeholder</tt> attribute replaces the <tt>input-prompt</tt> attribute for input components</li>
  173. <li><tt>multi-select</tt> attribute is no longer used for select components</li>
  174. <li><tt>vaadin-option-group</tt> with attribute <tt>multi-select=true</tt> is replaced by <tt>v-check-box-group</tt></li>
  175. <li><tt>vaadin-option-group</tt> with attribute <tt>multi-select=false</tt> is replaced by <tt>v-radio-button-group</tt></li>
  176. <li><tt>immediate</tt> attribute is not used for any component</li>
  177. <li><tt>read-only</tt> attribute is now only used for field components instead of all components</li>
  178. <li><tt>vaadin-upload</tt> has a new attribute <tt>immediate-mode</tt> that replaces the removed <tt>immediate</tt> attribue</li>
  179. <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>
  180. <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>
  181. </ul>
  182. <ul id="legacycomponents"><h4>Legacy components in the v7 compatiblity package <tt>com.vaadin.v7.ui</tt> available as a separate dependency</h4>
  183. <li><tt>Calendar</tt> - no replacement in 8</li>
  184. <li><tt>CheckBox</tt></li>
  185. <li><tt>ColorPicker</tt></li>
  186. <li><tt>ColorPickerArea</tt></li>
  187. <li><tt>ComboBox</tt></li>
  188. <li><tt>CustomField</tt></li>
  189. <li><tt>DateField</tt> - the replacing 8 version does not support selecting time</li>
  190. <li><tt>Form</tt> - no replacement in 8</li>
  191. <li><tt>Grid</tt> (and renderers)</li>
  192. <li><tt>HorizontalLayout</tt></li>
  193. <li><tt>InlineDateField</tt> - the replacing 8 version does not support selecting time</li>
  194. <li><tt>Label</tt></li>
  195. <li><tt>ListSelect</tt></li>
  196. <li><tt>NativeSelect</tt></li>
  197. <li><tt>OptionGroup</tt> - replaced by <tt>CheckBoxGroup</tt> (multiselection) and <tt>RadioButtonGroup</tt> (single selection)</li>
  198. <li><tt>PasswordField</tt></li>
  199. <li><tt>PopupDateField</tt> - replaced by partly by <tt>DateField</tt>, but doesn't allow selecting time</li>
  200. <li><tt>ProgressBar</tt></li>
  201. <li><tt>ProgressIndicator</tt></li>
  202. <li><tt>RichTextArea</tt></li>
  203. <li><tt>Select</tt> - removed, use <tt>ComboBox</tt> for single selection and <tt>ListSelect</tt> for multiselection</li>
  204. <li><tt>Table</tt> - no replacement in 8.0, use Grid.</li>
  205. <li><tt>TextArea</tt></li>
  206. <li><tt>TextField</tt></li>
  207. <li><tt>Tree</tt> - no replacement in 8.0, planned for 8.1</li>
  208. <li><tt>TreeTable</tt> - no replacement in 8.0, TreeGrid planned for 8.1</li>
  209. <li><tt>TwinColSelect</tt></li>
  210. <li><tt>VerticalLayout</tt></li>
  211. <li><tt>Upload</tt></li>
  212. </ul>
  213. <h3 id="knownissues">Known Issues and Limitations</h3>
  214. <ul>
  215. <li>Drag'n'drop in a Table doesn't work on touch devices running
  216. Internet Explorer (Windows Phone, Surface)
  217. (<a href="https://github.com/vaadin/framework/issues/5170">#5170</a>)
  218. </li>
  219. <li>Specifying layout sizes using <tt>em</tt> is currently discouraged, because it results in fractional
  220. components sizes in many cases, which might cause unwanted 1px gaps between components.
  221. </li>
  222. <li>Up-to-date information about configuration needed for push and compatibility issues are available in
  223. <a href="https://vaadin.com/wiki/-/wiki/Main/Configuring+push+for+your+environment">this wiki page.</a>
  224. <br />
  225. The most prominent limitations are:
  226. <ul>
  227. <li>Push is currently not supported in portals (See <a
  228. href="https://github.com/vaadin/framework/issues/3741">#3741</a>)
  229. </li>
  230. <li>>Transport mode WEBSOCKET does not support invalidating the session on Tomcat 7,
  231. nor setting cookies for the session. The new transport mode WEBSOCKET_XHR can be
  232. used to bypass these limitations.
  233. <br />
  234. See tickets <a href="https://github.com/vaadin/framework/issues/3911">#3911</a> and
  235. <a href="https://github.com/vaadin/framework/issues/3861">#3861</a>
  236. </li>
  237. </ul>
  238. </li>
  239. <li>Grid does not support adding components to cells. Instead light-weight Renderers can be
  240. used to present and edit data.</li>
  241. </ul>
  242. <h2 id="starting">Getting started with Vaadin Framework</h2>
  243. <p>
  244. <b>Vaadin Framework</b> is a Java framework for building modern web
  245. applications that look great, perform well and make you and
  246. your users happy. <b>The Framework</b> is available under the
  247. Apache License, Version 2.0 (see the
  248. <tt>license.html</tt>
  249. in the Vaadin Framework ZIP package).
  250. </p>
  251. <p>
  252. The easiest ways to start using <b>Vaadin Framework</b> are:
  253. </p>
  254. <ul>
  255. <li><strong>Maven dependency.</strong>If using Maven, define it as a dependency or use
  256. any of the available archetypes to create a new project. More information at
  257. <a href="https://vaadin.com/maven">https://vaadin.com/maven</a>
  258. </li>
  259. <li><strong>IDE Plugins.</strong>If using Eclipse, use the
  260. <a href="http://vaadin.com/eclipse">Vaadin Plugin for Eclipse</a>, which automatically
  261. downloads the Framework libraries. For NetBeans 8.0 and 7.4, use the
  262. <a href="http://plugins.netbeans.org/plugin/50531/vaadin-plug-in-for-netbeans">official Vaadin plugin</a>
  263. that provides Maven based wizards and code completion support for Vaadin Framework based development.
  264. </li>
  265. </ul>
  266. <p>
  267. Vaadin Framework is also available as a ZIP package downloadable from <a
  268. href="http://vaadin.com/download">Vaadin Download
  269. page</a>.
  270. </p>
  271. <h3 id="package">Package Contents</h3>
  272. <p>Inside the ZIP installation package you will find:</p>
  273. <ul>
  274. <li>Separate server-side (<tt>vaadin-server</tt>) and
  275. client-side (<tt>vaadin-client</tt>, <tt>vaadin-client-compiler</tt>)
  276. development libraries
  277. </li>
  278. <li>Precompiled widget set (<tt>vaadin-client-compiled</tt>)
  279. for server-side development
  280. </li>
  281. <li>Shared library (<tt>vaadin-shared</tt>) for both
  282. server- and client-side libraries
  283. </li>
  284. <li>Valo theme (the only inbuilt theme) (<tt>vaadin-themes</tt>)
  285. </li>
  286. <li>Dependency libraries provided under the <tt>lib/</tt>
  287. folder
  288. </li>
  289. <li>Vaadin 7 compatible classes for server-side (<tt>vaadin-compatibility-server</tt>,
  290. <tt>vaadin-compatibility-shared</tt>), client-side (<tt>vaadin-compatibility-client</tt>) and themes (<tt>vaadin-compatibility-themes</tt>)
  291. </li>
  292. </ul>
  293. <p>
  294. See the
  295. <tt>README.TXT</tt>
  296. in the installation package for detailed information about
  297. the package contents.
  298. </p>
  299. <p>
  300. For server-side development, copy the
  301. <tt>vaadin-server</tt>
  302. ,
  303. <tt>vaadin-client-compiled</tt>
  304. ,
  305. <tt>vaadin-shared</tt>
  306. , and
  307. <tt>vaadin-themes</tt>
  308. from the main folder and the dependencies from the
  309. <tt>lib</tt>
  310. folder to the
  311. <tt>WEB-INF/lib</tt>
  312. folder of your Vaadin project. (The
  313. <tt>vaadin-client-compiled</tt>
  314. is necessary if you do not wish to compile the widget set by
  315. your own, which you need to do if you use almost any add-on
  316. components.)
  317. </p>
  318. <h2 id="migrating">Migrating from Vaadin Framework 7.7</h2>
  319. <p>
  320. Most Vaadin Framework 7 applications need some changes when migrating
  321. to Vaadin Framework 8. In addition to updating dependencies, all references to
  322. Framework 7 style data binding and components using it need to be
  323. updated either to use new Framework 8 style data binding or to use the
  324. compatibility versions in separate packages.
  325. </p>
  326. <p>
  327. Vaadin Framework 7 compatible versions of the old data binding API and
  328. components (with the exception of Form) are available in the package
  329. com.vaadin.v7 in modules vaadin-compatibility-server,
  330. vaadin-compatibility-shared etc. that can be used instead of
  331. vaadin-server, vaadin-shared etc. The package
  332. vaadin-compatibility-client-compiled contains the widgetset
  333. <tt>com.vaadin.v7.Vaadin7WidgetSet</tt> which can be used instead of
  334. <tt>DefaultWidgetSet</tt>.
  335. </p>
  336. <p>
  337. 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.
  338. </p>
  339. <p>
  340. There is a <a href="https://github.com/vaadin/framework8-migration-tool/">
  341. migration tool</a> which helps with some of the migration steps.
  342. </p>
  343. <p>
  344. Some Vaadin Framework 7 add-ons do not work in version 8 - please check the add-ons in <a
  345. href="http://vaadin.com/directory/">Vaadin Directory</a>
  346. for Framework version 8 support.
  347. </p>
  348. <h3 id="upgrading">Common Upgrade Steps</h3>
  349. <p>Always when upgrading from an earlier Vaadin Framework version, you
  350. must:</p>
  351. <ul>
  352. <li>Recompile your classes using the new Framework
  353. version. Binary compatibility is only guaranteed for
  354. maintenance releases of Framework.</li>
  355. <li>Unless using the precompiled widget set, recompile
  356. your widget set using the new Framework version.</li>
  357. </ul>
  358. <p>Remember also to refresh the project in your IDE to
  359. ensure that the new version of everything is in use.</p>
  360. <p>
  361. By using the "
  362. <tt>?debug</tt>
  363. " URL parameter, you can verify that the version of the
  364. servlet, the theme, and the widget set all match.
  365. </p>
  366. <p>
  367. <b>Eclipse</b> users should always check if there is a new
  368. version of the Eclipse Plug-in available.
  369. </p>
  370. <p>
  371. <b>Maven</b> users should update the Vaadin Framework dependency
  372. version in the
  373. <tt>pom.xml</tt>
  374. .
  375. </p>
  376. <h2 id="dependencies">Vaadin Framework @version@ Dependencies</h2>
  377. <p>When using Maven, Ivy, Gradle, or other dependency
  378. management system, all Framework dependencies are downloaded
  379. automatically. This is also the case when using the Vaadin
  380. Plugin for Eclipse.</p>
  381. <p>
  382. The Vaadin Framework ZIP installation package includes the
  383. dependencies in the
  384. <tt>lib</tt>
  385. subfolder. These need to be copied to the
  386. <tt>WEB-INF/lib</tt>
  387. folder of the web application that uses Vaadin Framework.
  388. </p>
  389. <p>
  390. The dependencies are listed in the <a href="license.html">Licensing
  391. description</a>. Some are explicit dependencies packaged and
  392. distributed as separate JARs, while some are included inside
  393. other libraries.
  394. </p>
  395. <h3>Bean Validation</h3>
  396. <p>
  397. If you use the bean validation feature, you need
  398. a Bean Validation API implementation. You need to install
  399. the implementation JAR in the
  400. <tt>WEB-INF/lib</tt>
  401. directory of the web application that uses validation.
  402. </p>
  403. <h2 id="supportedversions">Supported Technologies</h2>
  404. <p>
  405. Vaadin Framework 8 is compatible with <b>Java 8</b> and newer. Vaadin Framework
  406. 8 is especially supported on the following <b>operating
  407. systems</b>:
  408. </p>
  409. <ul>
  410. <li>Windows</li>
  411. <li>Linux</li>
  412. <li>Mac OS X</li>
  413. </ul>
  414. <p>
  415. Vaadin Framework 8 requires <b>Java Servlet API 3.0</b> but also
  416. supports later versions and should work with any Java
  417. application server that conforms to the standard. The
  418. following <b>application servers</b> are supported:
  419. </p>
  420. <ul id="supportedservers">
  421. <li>Apache Tomcat 7-8</li>
  422. <li>Apache TomEE 1.7 and 7.0</li>
  423. <li>Oracle WebLogic Server 12.2</li>
  424. <li>IBM WebSphere Application Server 9</li>
  425. <li>JBoss EAP 6</li>
  426. <li>Wildfly 8-10</li>
  427. <li>Jetty 8-9</li>
  428. <li>Glassfish 4</li>
  429. </ul>
  430. <p>
  431. Vaadin Framework 8 supports the JSR-286 Portlet specification and all
  432. portals that implement the specification should work provided
  433. they support Java 8 and Servlet 3.0. The following <b>portals</b>
  434. are supported:
  435. </p>
  436. <ul>
  437. <li>Liferay Portal 6.2</li>
  438. </ul>
  439. <p>
  440. Vaadin Framework @version@ supports the following <b>desktop browsers</b>:
  441. </p>
  442. <ul>
  443. <li>Mozilla Firefox (latest version, currently 48)</li>
  444. <li>Mozilla Firefox ESR (latest version, currently 45 ESR)</li>
  445. <li>Internet Explorer 11, Edge (latest version)</li>
  446. <li>Safari 9+</li>
  447. <li>Google Chrome (latest version, currently 52)</li>
  448. </ul>
  449. <p>
  450. Additionally, Vaadin Framework supports the built-in browsers in the
  451. following <b>mobile operating systems</b>:
  452. </p>
  453. <ul>
  454. <li>iOS 9+</li>
  455. <li>Android 4+ with Chrome 42+</li>
  456. </ul>
  457. <h2 id="vaadinontheweb">Vaadin on the Web</h2>
  458. <ul>
  459. <li><a href="http://vaadin.com">vaadin.com - The
  460. developer portal containing everything you need to
  461. know about Vaadin</a></li>
  462. <li><a href="http://vaadin.com/demo">vaadin.com/demo
  463. - A collection of demos for Vaadin Framework</a></li>
  464. <li><a href="http://vaadin.com/learn">vaadin.com/learn
  465. - Getting started with Vaadin Framework</a></li>
  466. <li><a href="http://vaadin.com/forum">vaadin.com/forum
  467. - Forums for Vaadin Framework related discussions</a></li>
  468. <li><a href="http://vaadin.com/book">vaadin.com/book
  469. - Book of Vaadin - everything you need to know about
  470. Vaadin Framework</a></li>
  471. <li><a href="http://vaadin.com/api">vaadin.com/api
  472. - Online javadocs</a></li>
  473. <li><a href="http://vaadin.com/directory">vaadin.com/directory
  474. - Add-ons for Vaadin Framework</a></li>
  475. <li><a href="http://vaadin.com/pro-tools">vaadin.com/pro-tools
  476. - Commercial tools for Vaadin Framework</a></li>
  477. <li><a href="http://vaadin.com/support">vaadin.com/support
  478. - Commercial support for Vaadin Framework</a></li>
  479. <li><a href="http://vaadin.com/services">vaadin.com/services
  480. - Expert services for Vaadin Framework users</a></li>
  481. <li><a href="http://vaadin.com/company">vaadin.com/company
  482. - Information about the company behind Vaadin Framework</a></li>
  483. <li><a href="https://vaadin.com/contribute">vaadin.com/contribute - Contribution quide</a></li>
  484. <li><a href="https://github.com/vaadin/framework/issues">github.com/vaadin/framework - Github repository</a></li>
  485. </ul>
  486. </div>
  487. <!-- /content-->
  488. <div id="footer">
  489. <span class="slogan"><strong>vaadin <em>}></em>
  490. </strong> thinking of U and I<span> <a href="#top">&uarr; Back
  491. to top</a>
  492. </div>
  493. <!-- /footer -->
  494. </body>
  495. </html>
  496. <!-- Keep this comment at the end of the file
  497. Local variables:
  498. mode: xml
  499. sgml-omittag:nil
  500. sgml-shorttag:nil
  501. sgml-namecase-general:nil
  502. sgml-general-insert-case:lower
  503. sgml-minimize-attributes:nil
  504. sgml-always-quote-attributes:t
  505. sgml-indent-step:2
  506. sgml-indent-data:t
  507. sgml-parent-document:nil
  508. sgml-exposed-tags:nil
  509. sgml-local-catalogs:("/etc/sgml/catalog" "/usr/share/xemacs21/xemacs-packages/etc/psgml-dtds/CATALOG")
  510. sgml-local-ecat-files:("ECAT" "~/sgml/ECAT" "/usr/share/sgml/ECAT" "/usr/local/share/sgml/ECAT" "/usr/local/lib/sgml/ECAT")
  511. End:
  512. -->