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.

tutorial.adoc 43KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009
  1. ---
  2. title: Vaadin Tutorial
  3. order: 1
  4. layout: page
  5. subnav_auto_list_numbers: true
  6. subnav:
  7. - title: Overview
  8. href: '#framework.tutorial.overview'
  9. subnav:
  10. - title: Installing the Development Tools
  11. href: '#framework.tutorial.overview.tools'
  12. - title: Creating a project using an archetype
  13. href: '#framework.tutorial.archetype'
  14. - title: Adding a demo "backend"
  15. href: '#framework.tutorial.backend'
  16. - title: Listing entities in a Grid
  17. href: '#framework.tutorial.grid'
  18. - title: Creating live filtering for entities
  19. href: '#framework.tutorial.filtering'
  20. - title: Creating a form to edit Customer objects
  21. href: '#framework.tutorial.form'
  22. subnav:
  23. - title: Creating a form using Vaadin Designer
  24. href: '#framework.tutorial.form.designer'
  25. subnav:
  26. - title: Installing Vaadin Designer
  27. href: '#framework.tutorial.form.designer.install'
  28. - title: Creating the form design
  29. href: '#framework.tutorial.form.designer.create'
  30. - title: Creating a form using plain Java
  31. href: '#framework.tutorial.form.java'
  32. - title: Connecting the form to the application
  33. href: '#framework.tutorial.form-connection'
  34. - title: It works! What next?
  35. href: '#framework.tutorial.next'
  36. ---
  37. :sectnums:
  38. [[framework.tutorial]]
  39. = Vaadin Tutorial
  40. This tutorial gives you an overview of how you can use https://vaadin.com/framework[Vaadin Framework] to build single-page web UIs for your Java application.
  41. All you need to start with it is JDK 8 and an https://en.wikipedia.org/wiki/Integrated_development_environment[IDE], such as Eclipse.
  42. While this tutorial is written for Eclipse users, you can use your IDE of choice.
  43. No extensive knowledge of Java is needed, only basic programming skills are required.
  44. [[framework.tutorial.overview]]
  45. == Overview
  46. You'll have your first Vaadin app running in your IDE in a couple of minutes. To complete the whole tutorial, you'll need about 20 to 60 minutes, depending on your existing experience.
  47. Naturally, you can just do the beginning of the exercise or pick any of the steps you want.
  48. To start from a specific step, we have prepared the example code after each step to be downloaded as a zip file.
  49. In this tutorial, we build a simple customer management system.
  50. It is not a real application; we use an in-memory "back-end", so that you can understand how to hook it to an existing Java based back-end.
  51. We cover the basic Vaadin development and you can use the result as a basis for more experiments with Vaadin, such as using add-ons, your own custom look-and- feel (aka. theme), adding new views, or optimizing the result for mobile support.
  52. [[figure.framework.tutorial.final-ui]]
  53. .UI to be built in the tutorial
  54. image::img/finalUI.jpg[]
  55. If you do not want to do the exercise at all, you can also just https://github.com/vaadin/tutorial/[download the final application] and play around with it.
  56. TIP: In addition to this written tutorial, we have recorded the steps as https://www.youtube.com/playlist?list=PLcRrh9hGNalkZx921iMqZ-jXR0C72eIPR[a series of videos]. You can just watch all the videos or watch the video of each step before you do the same step yourself.
  57. [[framework.tutorial.overview.tools]]
  58. === Installing the Development Tools
  59. The tutorial uses Java 8, so please ensure that you have an up-to-date JDK 8 installed.
  60. Most Linux distributions can use package managers to install JDK8.
  61. Windows and Mac users should download it from http://www.oracle.com/technetwork/java/javase/downloads/index.html[Oracle's Java
  62. SE site].
  63. Also make sure you have the latest version of your IDE.
  64. Eclipse is available in various packages; be sure to download the *Eclipse IDE for Java EE Developers* from http://www.eclipse.org/downloads/[eclipse.org].
  65. [[framework.tutorial.archetype]]
  66. == Creating a Project from an Archetype
  67. The following video shows how to do this step of the tutorial:
  68. video::sMGHSK_97NI[youtube, width="640", height="400"]
  69. As the starting point for the application, we use a Maven archetype called `vaadin-archetype-application`.
  70. Archetypes are project stubs that have some example code and a basic Maven build script.
  71. . Start by choosing "File > New > Maven Project" from the menu.
  72. +
  73. [[figure.framework.tutorial.create-maven-project]]
  74. .Create a new Maven project
  75. image::img/createMavenProject.jpg[width=70%]
  76. +
  77. TIP: If the [guilabel]#Maven Project# is not visible in the menu, you should switch to the _Java EE_ perspective.
  78. You can use the shortcut button in the tool bar or "Window > Perspective" to switch to the perspective.
  79. . The first step in the wizard is good as is for our purpose.
  80. Just click [guibutton]#Next#.
  81. . In the second step, you need to choose the `vaadin-archetype-application` archetype.
  82. +
  83. .Selecting the archetype
  84. image::img/projectWizard2-top.jpg[width=70%]
  85. +
  86. You can first try to find it using the filtering function.
  87. +
  88. If Eclipse has not yet indexed the archetype catalog, you need to manually add the archetype details.
  89. // +
  90. // .Adding a new archetype
  91. // image::img/projectWizard2-add.jpg[width=70%]
  92. +
  93. Click the [guibutton]#Add Archetype# button.
  94. +
  95. .Settings for a new archetype
  96. image::img/projectWizardAddArchetype-crop.jpg[width=70%]
  97. +
  98. Enter the following values:
  99. +
  100. [guilabel]#Group ID#::
  101. Give `com.vaadin`
  102. [guilabel]#Artifact ID#::
  103. Give `vaadin-archetype-application`
  104. [guilabel]#Version#::
  105. You can find the latest Vaadin version number from https://vaadin.com/framework/releases[vaadin.com/framework/releases].
  106. [guilabel]#Repository URL#::
  107. This can be left blank.
  108. +
  109. And click [guibutton]#OK#.
  110. Now you can select the new archetype from the list.
  111. +
  112. WARNING: Eclipse has a bug in its project wizard.
  113. The `vaadin-archetype-application` may not appear in the listing, even though you added it using the [guibutton]#Add Archetype# button.
  114. If this occurs, close the whole new project wizard and re-open it by selecting "File > New > Maven Project" again.
  115. The archetype then typically appears in the listing and can be found by the filtering functionality.
  116. . In the next wizard step, type in the following fields:
  117. [guilabel]#Group Id#:: `my.vaadin`
  118. [guilabel]#Artifact Id#:: `app`
  119. +
  120. and click [guibutton]#Finish#.
  121. If this is your first Vaadin app, creating a project might take a while, depending on the speed of your network, as Vaadin libraries and other dependencies are being downloaded.
  122. Maven caches them on your local file system.
  123. Creating your next Maven-based Vaadin project will be much faster.
  124. Right click on the newly created project and choose "Run as > Maven Install".
  125. This initiates a full build of your application and finally creates a https://en.wikipedia.org/wiki/WAR_(file_format)[WAR] file into the [filename]#target# directory.
  126. You can deploy the WAR file to your application server.
  127. The first build might take a while, as Maven might again need to download some new modules.
  128. TIP: For the Maven compilation to work you need a JDK to be configured in your
  129. Eclipse in "Window > Preferences > Java > Installed JREs > Add...".
  130. This step is necessary at least on Windows, if you are using a fresh installation of Eclipse or for some other reason haven't configured a JDK to your Eclipse.
  131. The JDK by default installs to [filename]#\Program Files\Java# on Windows.
  132. You can make JDK the default JRE for your Eclipse.
  133. While the build is running, let us have a look at what the archetype created for
  134. you.
  135. You can browse your project resources from the tree structure in the [guilabel]#Project Explorer#.
  136. Maven's [filename]#pom.xml# on top level contains settings for building your project and declares the used dependencies.
  137. Open [guilabel]#Java Resources# and below it [filename]#src/main/java#, the main source directory, and [packagename]#my.vaadin.app#, the main Java package that will contain your Vaadin UI code.
  138. TIP: Eclipse shows all project files in the Project Explorer.
  139. In this case, you can also find your [filename]#.java# files from under the top-level [filename]#src# node.
  140. However, the suggested method is to access them from under the [guilabel]#Java Resources# node, which is optimized for editing Java source code.
  141. The UI code (and the Servlet declaration) used by the application stub can be
  142. found in the [filename]#MyUI.java# file.
  143. Let us read it through to see how it works.
  144. The [methodname]#init()# method of a UI class is triggered when a user enters your web application.
  145. The [classname]#VerticalLayout# is one of the most used layout components, which
  146. are used to position and display other Vaadin components in your UI classes.
  147. The example code creates one [classname]#TextField# to allow the user to input her name and a [classname]#Button# whose click listener dynamically adds a new [classname]#Label# component to the main layout.
  148. In the end of the [methodname]#init()# method, we just configure the main layout and place components into it and set it to be the content of [classname]#MyUI#.
  149. To test your first Vaadin application, right-click on the project and choose "Debug as > Maven build...".
  150. The debug mode is slightly slower than the basic run mode, but it often helps you to figure out what is happening in your application.
  151. [[figure.framework.tutorial.debug-as-maven-build]]
  152. .Starting the server using a Maven target
  153. image::img/debugAsMavenBuild.jpg[]
  154. In the dialog, type `Run in jetty` to the [guilabel]#Name# input and `jetty:run` to the [guilabel]#Goals# input.
  155. [[figure.framework.tutorial.jetty-run]]
  156. .Generating a Maven launch for `jetty:run` target
  157. image::img/debugAsMavenBuild2.jpg[]
  158. Before clicking debug, to make sure debugging works properly, add your Java
  159. project to the source lookup path from the [guilabel]#Source# tab, as it is being done in <<figure.tutorial.creating.add-sources>>.
  160. [[figure.tutorial.creating.add-sources]]
  161. .Adding sources for debugging
  162. image::img/debugAsMavenBuildAddSources.jpg[]
  163. Now click [guibutton]#Debug# to continue.
  164. This will download a small Java web server (if not cached to your local Maven repository), and use it to host your application.
  165. Once the server has started, point your browser to the URL http://localhost:8080/[http://localhost:8080/] to see the running application.
  166. If you make changes to the code, the Jetty server will notice the changes and in
  167. a couple of seconds most changes are automatically deployed.
  168. Reloading the page in your browser will show the changes.
  169. TIP: In some cases your JVM might not allow injecting changes on the fly.
  170. In these cases, Eclipse will complain about "Hot code replacement error".
  171. Just choose to restart the server to get the latest changes.
  172. Many Java developers use a commercial tool called http://zeroturnaround.com/software/jrebel/[JRebel] to make code replacement work better.
  173. Mastering the usage of the Java debugger is also handy to better understand how your application actually works and fixing bugs that all developers write at some point.
  174. As Vaadin is "only" Java code, you can use all of Java's debugging tools, which cannot be done with other UI frameworks where the UI is written (partly) in HTML and/or JavaScript.
  175. Double-click on the line number in the Java editor, for example of the following line in the click listener:
  176. [source,java]
  177. ----
  178. layout.addComponent(new Label("Thanks " + name.getValue()));
  179. ----
  180. Doing so adds a breakpoint to the selected line.
  181. If you then click the button in your browser, the execution of the application will stop on that line.
  182. Eclipse will ask you to enter to _Debugging perspective_.
  183. That way you can step through the execution and inspect the variables.
  184. Clicking on the _play_ icon in the toolbar will continue the execution.
  185. Double-click the same line again to remove the breakpoint.
  186. [[figure.framework.tutorial.breakpoint]]
  187. .Execution in a break point in the button click listener
  188. image::img/debugInBreakPointVariable.jpg[]
  189. Clicking the red square in the [guilabel]#Console# view will terminate the server process.
  190. You can restart it easily form the run/debug history.
  191. You can find that from the small down arrow next to the green play button or bug button (for the debug mode) in the tool bar.
  192. Alternatively, you can use the main menu "Run > Run
  193. history/Debug history > Run in Jetty".
  194. To get back to the _Java EE Perspective_, an Eclipse mode designed for editing Java web app code, click the [guibutton]#Java EE# button in the toolbar.
  195. [[framework.tutorial.backend]]
  196. == Adding a demo "backend"
  197. TIP: Starting from this step directly? https://github.com/vaadin/tutorial/archive/v8-step2.zip[Download the project] for this step, extract the zip file and choose "Import... > Maven > Existing Maven project".
  198. Before getting more into real Vaadin development, let us introduce some domain objects and a "fake backend".
  199. In a real-world application, you will most likely have something similar, implemented with, for example, JPA and EJB or a Spring-based service.
  200. The following video shows how to do this step of the tutorial:
  201. video::qF31jkBFbR0[youtube, width="640", height="400"]
  202. Copy the following three classes from github to your project.
  203. Class names point to the classes hosted in Github.
  204. Copying classes can be done in many ways.
  205. TIP: The fastest way to copy classes using Eclipse is to use your good old
  206. clipboard. Select the text content of the whole class from your browser, choose
  207. "Edit > Copy", focus the node representing the [packagename]#my.vaadin.app# Java package in Eclipse's Java Resources view and choose "Edit > Paste".
  208. Eclipse is smart enough to automatically create a properly named Java file for the class.
  209. * https://raw.githubusercontent.com/vaadin/tutorial/master/src/main/java/my/vaadin/app/CustomerStatus.java[CustomerStatus] - this is a simple enum class
  210. * https://raw.githubusercontent.com/vaadin/tutorial/master/src/main/java/my/vaadin/app/Customer.java[Customer] - this is the main domain object, a basic Java bean that we will be using in our example
  211. * https://raw.githubusercontent.com/vaadin/tutorial/master/src/main/java/my/vaadin/app/CustomerService.java[CustomerService] - this is a simple facade via which you can request and modify [classname]#Customer# instances.
  212. You can think of this as your entry point to your fake database.
  213. In the next steps, we will be using these classes and build a UI around them.
  214. The actual implementation of these classes is not relevant for this tutorial, but feel free to have a look around.
  215. [[framework.tutorial.grid]]
  216. == Listing entities in a Grid
  217. TIP: Starting from this step directly? https://github.com/vaadin/tutorial/archive/v8-step3.zip[Download the project] for this step, extract the zip file and choose "Import... > Maven > Existing Maven project".
  218. Often when you start building a UI for a data-centric application, the first
  219. thing you want to do is to list your data from your back-end.
  220. There are several components and ways in Vaadin to do this.
  221. In this example, we will use the Grid component for tabular presentation of our customers.
  222. The following video shows how to do this step of the tutorial:
  223. video::EBCm-Vf_fUs[youtube, width="640", height="400"]
  224. We start by introducing a [classname]#Grid# to the [classname]#MyUI# class.
  225. We could of course just introduce the Grid as a variable in the [methodname]#init()# method, but we most likely want to refer to it later.
  226. Also, let us get a reference to the [classname]#CustomerService#.
  227. [source,java]
  228. ----
  229. public class MyUI extends UI {
  230. // Add the next two lines:
  231. private CustomerService service = CustomerService.getInstance();
  232. private Grid<Customer> grid = new Grid<>(Customer.class);
  233. // The rest is already there...
  234. @Override
  235. protected void init(VaadinRequest vaadinRequest) {
  236. ...
  237. ----
  238. TIP: If you are new to Java development, you probably do not feel comfortable
  239. with the red compilation error for the line where the [classname]#Grid# got introduced, because of a missing import.
  240. This is easily fixed in Eclipse by using the
  241. menu:Source[Organize Imports] command. Learn its shortcut (kbd:[Ctrl-Shift-O] or
  242. kbd:[CMD-Shift-O] on Macs), you'll be using it a lot in Java development. In
  243. possible class name collisions, always choose the appropriate class from the
  244. _com.vaadin.ui_ package if you want to import core Vaadin UI classes like the
  245. Grid.
  246. To simply list all properties of all Customer objects from the backend service,
  247. replace the init method with the following snippet:
  248. [source,java]
  249. ----
  250. @Override
  251. protected void init(VaadinRequest vaadinRequest) {
  252. final VerticalLayout layout = new VerticalLayout();
  253. // add Grid to the layout
  254. layout.addComponents(grid);
  255. // fetch list of Customers from service and assign it to Grid
  256. List<Customer> customers = service.findAll();
  257. grid.setItems(customers);
  258. setContent(layout);
  259. }
  260. ----
  261. TIP: Again, use the organize imports feature. The List object we use here is
  262. _java.util.List_.
  263. As we'll want to refresh the listing from various places in our application,
  264. extract the customer listing part into its own "updateList" method with the
  265. *public* modifier. The public modifier is handy later when we want to update the
  266. listing from other classes. You can let Eclipse help here by selecting the
  267. relevant lines and using the "quick fix" feature (kbd:[Ctrl+1] or kbd:[Cmd+1] on
  268. Macs). The extracted method call looks like this:
  269. [source,java]
  270. ----
  271. public void updateList() {
  272. List<Customer> customers = service.findAll();
  273. grid.setItems(customers);
  274. }
  275. ----
  276. If you try the application now, you'll see an empty Grid with no columns. To add columns, configure
  277. the Grid using the _setColumns_ method to show the "firstName", "lastName" and
  278. "email" properties.
  279. [source,java]
  280. ----
  281. grid.setColumns("firstName", "lastName", "email");
  282. ----
  283. At this point the body of the MyUI class should look like this (servlet declaration
  284. omitted):
  285. [source,java]
  286. ----
  287. private CustomerService service = CustomerService.getInstance();
  288. private Grid<Customer> grid = new Grid<>(Customer.class);
  289. @Override
  290. protected void init(VaadinRequest vaadinRequest) {
  291. final VerticalLayout layout = new VerticalLayout();
  292. grid.setColumns("firstName", "lastName", "email");
  293. // add Grid to the layout
  294. layout.addComponent(grid);
  295. updateList();
  296. setContent(layout);
  297. }
  298. public void updateList() {
  299. // fetch list of Customers from service and assign it to Grid
  300. List<Customer> customers = service.findAll();
  301. grid.setItems(customers);
  302. }
  303. ----
  304. You can now save your changes to the file and verify the changes from your browser.
  305. You can do this at any point during the rest of the tutorial as well.
  306. [[framework.tutorial.filtering]]
  307. == Creating live filtering for entities
  308. TIP: Starting from this step directly? https://github.com/vaadin/tutorial/archive/v8-step4.zip[Download the project] for this step, extract the zip file and choose menu:Import...[Maven>Existing Maven project].
  309. A search functionality is expected in every modern application and it is
  310. also a nice Vaadin development exercise. Let's add a filtering functionality to
  311. the Customer listing we created in the previous step.
  312. The following video shows how to do this step of the tutorial:
  313. video::kyMaJLUtz3g[youtube, width="640", height="400"]
  314. We'll start by introducing a [classname]#TextField# component as a field to our [classname]#UI# class:
  315. [source,java]
  316. ----
  317. private TextField filterText = new TextField();
  318. ----
  319. In the [methodname]#init()# method, configure the text field to contain a helpful input prompt
  320. and add a text change listener to the field. The exact place of these lines is
  321. not important, but add them, for example, after you have introduced the _layout_
  322. object.
  323. [source,java]
  324. ----
  325. filterText.setPlaceholder("filter by name...");
  326. filterText.addValueChangeListener(e -> updateList());
  327. filterText.setValueChangeMode(ValueChangeMode.LAZY);
  328. ----
  329. TIP: To keep your code more readable, you can use autoformat after you write or
  330. copy paste code snippets. The default keyboard shortcut in Eclipse is
  331. kbd:[Ctrl+Shift+F] or kbd:[Cmd+Shift+F]
  332. As its name implies, the value change listener allows you to react to changes in
  333. the value contained in the text field. It is configured so that the event is fired
  334. lazily while the user is typing, when there is a small pause in the typing.
  335. This makes it perfect for this kind of automatic filtering. When the
  336. user has changed the text, we'll just update the listing calling the _updateList_
  337. method.
  338. To keep the _updateList_ method functional, it should take into consideration
  339. the possible value in the filterText field. Change the line for fetching the
  340. customers into this:
  341. [source,java]
  342. ----
  343. List<Customer> customers = service.findAll(filterText.getValue());
  344. ----
  345. Before adding the text field to the UI, let's improve the usability a bit
  346. and make a short exercise to compose better components from lower level UI
  347. components. The search field can naturally be cleared with the keyboard, but let's
  348. add a clear button next to the text field. Start by adding the following lines
  349. to the init method, for example right after your _filterText_ configuration:
  350. [source,java]
  351. ----
  352. Button clearFilterTextBtn = new Button(VaadinIcons.CLOSE);
  353. clearFilterTextBtn.setDescription("Clear the current filter");
  354. clearFilterTextBtn.addClickListener(e -> filterText.clear());
  355. ----
  356. Vaadin contains a set of built in icons, from which we use the "X" icon,
  357. _VaadinIcons.CLOSE_, here, which most users will recognise as a functionality to clear
  358. the value. If we set the description to a component, it will be shown as a
  359. tooltip for those users who hover the cursor over the button and wonder what to
  360. do with it. In the click listener, we simply clear the text from the field.
  361. Vaadin contains lots of different kinds of layouts. The simplest way to align
  362. the text field and the button next to each other would be to use a
  363. HorizontalLayout. An alternative way we use here is using a CssLayout, which is
  364. a lightweight layout that is easy to customize with css. Even if you wouldn't
  365. want to play with CSS yourself, you can often use one of the existing style
  366. rules in the default https://demo.vaadin.com/valo-theme[_Valo_] theme. The following snippet will create a nice
  367. compact "composition" of both the TextField and the clear button. Add these
  368. lines to the init method right after you configured the _clearFilterTextBtn_:
  369. [source,java]
  370. ----
  371. CssLayout filtering = new CssLayout();
  372. filtering.addComponents(filterText, clearFilterTextBtn);
  373. filtering.setStyleName(ValoTheme.LAYOUT_COMPONENT_GROUP);
  374. ----
  375. Finally, *change* the line in the init method that currently adds only the grid,
  376. to add both _filtering_ composition and the _grid_ to the main _layout_ of the
  377. application.
  378. [source,java]
  379. ----
  380. layout.addComponents(filtering, grid);
  381. ----
  382. Now it is a good place to save your changes and try them in your browser.
  383. [[framework.tutorial.form]]
  384. == Creating a form to edit Customer objects
  385. To edit and add Customer objects we need to create a form, that edits the
  386. values in our domain objects. This tutorial has two alternative methods to do
  387. that. Pick either of them.
  388. [[framework.tutorial.form.designer]]
  389. === Creating a form using Vaadin Designer
  390. TIP: Starting from this step directly? https://github.com/vaadin/tutorial/archive/v8-step5.zip[Download the project] for this step, extract the zip file and choose menu:Import...[Maven>Existing Maven project].
  391. The form to edit Customer objects can be built using several methods of which
  392. the visual composition by drag 'n' drop is the most intuitive. Vaadin
  393. Designer is an Eclipse plugin that you can install and do WYSIWYG editing of
  394. your view code. We'll use it to create the form and then hook the editing logic
  395. to it with Java.
  396. TIP: If you are using another IDE or just prefer to compose your user interface
  397. with code, take the alternative step, <<Creating a form using plain Java>>,
  398. where the CustomerForm is composed using plain Java code.
  399. [[framework.tutorial.form.designer.install]]
  400. ==== Installing Vaadin Designer
  401. Vaadin Designer comes as an integrated part of Vaadin Plugin for Eclipse. It can
  402. be installed easily via Eclipse Marketplace. Choose menu:Help[Eclipse Marketplace]
  403. In the dialog, just search for Vaadin and click _install_ to mark it for
  404. installation. Clicking _Install Now_ will take you to choose the modules you want
  405. and accept the license agreement.
  406. [[figure.framework.tutorial.plugin-install]]
  407. .Selecting Vaadin Plugin for Eclipse for installation in Eclipse Marketplace
  408. image::img/pluginEclipseMarketPlace2.jpg[]
  409. If you get a security warning about the software containing unsigned content,
  410. just accept the warning by clicking OK. After installation, Eclipse asks if you
  411. want to restart. Click Yes.
  412. TIP: When you use Vaadin Designer for the first time in the next
  413. step, it will ask for a license key. Get a key from
  414. https://vaadin.com/designer. If you are not willing to buy a license now, just
  415. acquire a trial license.
  416. [[framework.tutorial.form.designer.create]]
  417. ==== Creating the form design
  418. The following screencast will show you how to produce the
  419. _CustomerFormDesign.html_, a design file we need in this tutorial. Use pause and
  420. slow motion to follow better what is being done in the video. Feel free to get creative!
  421. video::zLE2YfLB1MM[youtube, width="640", height="400"]
  422. TIP: At any point of the process, you can also switch to the markup mode where
  423. you can edit the raw content of the .html file. If you wish to take a shortcut
  424. or think you did something wrong when using the designer, you can just
  425. copy-paste the content of https://github.com/vaadin/tutorial/blob/master/src/main/resources/my/vaadin/app/CustomerFormDesign.html[the final state] to your own .html file.
  426. TIP: With Vaadin Framework 8, make following things differently:
  427. For status' NativeSelect Component, set Itemtype as CustomerStatus enum.
  428. Use DateField Component for birthday, instead of PopupDateField.
  429. At this point we only have a static mockup of the actual UI. To implement a
  430. functional form component, we need some Java code as well. Vaadin Designer
  431. automatically creates a similarly named Java class, but a good habit is to never touch the auto-generated file, in this case the
  432. CustomerFormDesign.java file. If you'd introduce a new field to your form,
  433. your changes to CustomerFormDesign would be overridden by the tooling. Instead,
  434. we'll create a class called CustomerForm which inherits from the auto-generated
  435. CustomerFormDesign class.
  436. Start by creating a new Java class with the name CustomerForm. In Eclipse, right
  437. click on the "my.vaadin.app" package and choose menu:New[Class]. Type in the
  438. name _CustomerForm_, define the superclass as
  439. _my.vaadin.app.CustomerFormDesign_ and click _finish_.
  440. From the superclass, we inherit all the UI elements that we named when using
  441. the designer. E.g. by simply referencing to "save" field in the CustomerForm,
  442. we'll have access to the save button we previously created.
  443. We will later need a reference to the currently edited Customer object,
  444. CustomerService and the MyUI that uses this class. Add these fields and a
  445. basic constructor that accepts MyUI as a parameter to the CustomerForm class:
  446. [source,java]
  447. ----
  448. private CustomerService service = CustomerService.getInstance();
  449. private Customer customer;
  450. private MyUI myUI;
  451. public CustomerForm(MyUI myUI) {
  452. this.myUI = myUI;
  453. }
  454. ----
  455. Although the form is not yet fully functional, you might want to see what it
  456. looks like at this point. Add it as a field to the _MyUI_ class:
  457. [source,java]
  458. ----
  459. private CustomerForm form = new CustomerForm(this);
  460. ----
  461. Now let's modify the init method in MyUI to show the form. Let's wrap both the
  462. Grid and the CustomerForm in a horizontal layout and configure the Grid to use
  463. all of the available space more efficiently. Replace the line
  464. *layout.addComponents(filtering, grid);* with the following:
  465. [source,java]
  466. ----
  467. HorizontalLayout main = new HorizontalLayout(grid, form);
  468. main.setSizeFull();
  469. grid.setSizeFull();
  470. main.setExpandRatio(grid, 1);
  471. layout.addComponents(filtering, main);
  472. ----
  473. If you now save your changes and reload your application page in a browser,
  474. you should see your CustomerForm next to the grid that lists your
  475. existing entities.
  476. Let's get back to the CustomerForm. The first thing we'll need is to populate
  477. the options for the select. To add all enum values as valid selections, add the
  478. following line to the constructor:
  479. [source,java]
  480. ----
  481. status.setItems(CustomerStatus.values());
  482. ----
  483. Let's also improve the UX a bit. When building the design, we already
  484. emphasized the save button with a ValoTheme.BUTTON_PRIMARY style name. Thus, it
  485. would be natural if the enter-key would do the same action as clicking the
  486. save button. Assign a keyboard shortcut to the save button with this line in the
  487. constructor:
  488. [source,java]
  489. ----
  490. save.setClickShortcut(KeyCode.ENTER);
  491. ----
  492. To finish our form, we need to create a public API that we will use in the next part from MyUI, to pass in a Customer object that the form should edit.
  493. We will also add some logic to actually save the changes.
  494. We'll start by adding a [classname]#Binder# as a field to the [classname]#CustomerForm# class:
  495. [source,java]
  496. ----
  497. private Binder<Customer> binder = new Binder<>(Customer.class);
  498. ----
  499. In the constructor of the CustomerForm class add the following line to configure
  500. the Binder:
  501. [source,java]
  502. ----
  503. binder.bindInstanceFields(this);
  504. ----
  505. This configures the Binder to use all the similary named editor fields in
  506. this form to bind their values with their counterpart in the Customer class.
  507. For example, the _CustomerForm.firstName_ TextField will be bound to the
  508. Customer.firstName property.
  509. Create a setter method for the Customer field. Just type _setCus_ in the body of the
  510. class and hit autocomplete (kbd:[Ctrl+Space]) and Eclipse will create a method
  511. stub for you. Complete it with the following implementation:
  512. [source,java]
  513. ----
  514. public void setCustomer(Customer customer) {
  515. this.customer = customer;
  516. binder.setBean(customer);
  517. // Show delete button for only customers already in the database
  518. delete.setVisible(customer.isPersisted());
  519. setVisible(true);
  520. firstName.selectAll();
  521. }
  522. ----
  523. In addition to saving the reference of the currently edited Customer object, we are
  524. calling the _Binder.setBean_ method. This will initialise all
  525. fields in the form and automatically update the values in the domain objects as
  526. the corresponding field value changes in the user interface.
  527. TIP: If the naming convention based databinding doesn't fit your needs, you
  528. can use
  529. https://www.vaadin.com/api/com/vaadin/data/fieldgroup/PropertyId.html[PropertyId]
  530. annotation on fields to explicitly declare the edited property.
  531. We'll also want to ensure the form is visible and that focus goes to the
  532. firstName field to improve user experience. As we will be using the form to
  533. edit both new non-persisted objects and existing customers, we will also show
  534. the delete button only for customers that are already persisted in the backend.
  535. The last thing we need to do is to handle save and delete button clicks. Add
  536. the following methods to the CustomerForm class:
  537. [source,java]
  538. ----
  539. private void delete() {
  540. service.delete(customer);
  541. myUI.updateList();
  542. setVisible(false);
  543. }
  544. private void save() {
  545. service.save(customer);
  546. myUI.updateList();
  547. setVisible(false);
  548. }
  549. ----
  550. Finally, we'll add listeners to the buttons to call these methods. Adding these
  551. simple lambda expressions to the constructor will take care of that:
  552. [source,java]
  553. ----
  554. save.addClickListener(e -> this.save());
  555. delete.addClickListener(e -> this.delete());
  556. ----
  557. TIP: For a truly re-usable form component in a real life project, you'd want to
  558. introduce an interface to replace the myUI field or, even better, use an event
  559. system like https://vaadin.com/wiki/-/wiki/main/Events+and+contexts[CDI events]
  560. to completely decouple the components. We'll leave that out of this tutorial for
  561. simplicity.
  562. [[framework.tutorial.form.java]]
  563. === Creating a form using plain Java
  564. TIP: Starting from this step directly? https://github.com/vaadin/tutorial/archive/v8-step5.zip[Download the project] for this step, extract the zip file and choose menu:Import...[Maven>Existing Maven project].
  565. This is an alternative step to the <<Creating a form using Vaadin Designer>>,
  566. where you'll build the form UI programmatically in plain Java. If you already
  567. completed the step using Vaadin Designer, you can proceed to
  568. <<Connecting the form to the application>>.
  569. The following video shows how to create a form using plain Java:
  570. video::jOhkclbdwp0[youtube, width="640", height="400"]
  571. Start by creating a new Java class with the name CustomerForm. In Eclipse right
  572. click on the "my.vaadin.app" package and choose menu:New[Class]. Type in the
  573. name _CustomerForm_, define the superclass as _com.vaadin.ui.FormLayout_ and
  574. click _finish_.
  575. In the form, we'll need editor fields for each property in our Customer domain
  576. class. There are different kinds of fields in Vaadin for editing different kinds
  577. of properties. In this example, we'll use a TextField, a DateField and a
  578. NativeSelect. Add the following field declarations and action buttons as Java
  579. fields to the CustomerForm:
  580. [source,java]
  581. ----
  582. private TextField firstName = new TextField("First name");
  583. private TextField lastName = new TextField("Last name");
  584. private TextField email = new TextField("Email");
  585. private NativeSelect<CustomerStatus> status = new NativeSelect<>("Status");
  586. private DateField birthdate = new DateField("Birthday");
  587. private Button save = new Button("Save");
  588. private Button delete = new Button("Delete");
  589. ----
  590. Also, we will later need a reference to the currently edited Customer object,
  591. CustomerService and the MyUI that uses this class. Add these fields and a
  592. basic constructor that accepts MyUI as a parameter to the CustomerForm class:
  593. [source,java]
  594. ----
  595. private CustomerService service = CustomerService.getInstance();
  596. private Customer customer;
  597. private MyUI myUI;
  598. public CustomerForm(MyUI myUI) {
  599. this.myUI = myUI;
  600. setSizeUndefined();
  601. HorizontalLayout buttons = new HorizontalLayout(save, delete);
  602. addComponents(firstName, lastName, email, status, birthdate, buttons);
  603. }
  604. ----
  605. In the constructor we make the form size undefined, which practically means it
  606. will consume the minimum space defined by its content. Then we'll just add all
  607. the fields to the CustomerForm and add action buttons to the bottom - side-by-side
  608. using a HorizontalLayout. Although the form is not yet fully functional, you
  609. might want to see what it looks like at this point. Add it as a field to the MyUI
  610. class:
  611. [source,java]
  612. ----
  613. private CustomerForm form = new CustomerForm(this);
  614. ----
  615. Now let's modify the init method in MyUI to show the form. Let's wrap both the
  616. Grid and the CustomerForm in a horizontal layout and configure the Grid to use
  617. all of the available space more efficiently. Replace the line
  618. *layout.addComponents(filtering, grid);* with the following:
  619. [source,java]
  620. ----
  621. HorizontalLayout main = new HorizontalLayout(grid, form);
  622. main.setSizeFull();
  623. grid.setSizeFull();
  624. main.setExpandRatio(grid, 1);
  625. layout.addComponents(filtering, main);
  626. ----
  627. When you now save your changes and reload your application page in your browser,
  628. you should see your CustomerForm next to the grid that lists your
  629. existing entities.
  630. Let's get back to the CustomerForm. The first thing we'll need is to populate
  631. the options for the select. To add all enum values as valid selections, add the
  632. following line to the constructor:
  633. [source,java]
  634. ----
  635. status.setItems(CustomerStatus.values());
  636. ----
  637. Let's also improve the UX a bit. The most common thing your users will want to
  638. do with this kind of form is to save it. Let's decorate the button with a style
  639. name that makes it more prominent in the UI and give it a keyboard shortcut -
  640. simply an enter hit in this case:
  641. [source,java]
  642. ----
  643. save.setStyleName(ValoTheme.BUTTON_PRIMARY);
  644. save.setClickShortcut(KeyCode.ENTER);
  645. ----
  646. To finish our form, we need to create a public API that we will use in the next
  647. part from the MyUI, to pass in a Customer object that the form should edit. We
  648. will also add some logic to actually save the changes. We'll start by adding a
  649. _Binder_ as a field to the _CustomerForm_ class:
  650. [source,java]
  651. ----
  652. private Binder<Customer> binder = new Binder<>(Customer.class);
  653. ----
  654. In the constructor of the CustomerForm class add the following line to configure
  655. the Binder:
  656. [source,java]
  657. ----
  658. binder.bindInstanceFields(this);
  659. ----
  660. This configures the Binder to use all the similary named editor fields in
  661. this form to bind their values with their counterpart in the Customer class.
  662. For example, the _CustomerForm.firstName_ TextField will be bound to the
  663. Customer.firstName property.
  664. Create a setter method for the Customer field. Just type _setCus_ in the body of the
  665. class and hit autocomplete (kbd:[Ctrl+Space]) and Eclipse will create a method
  666. stub for you. Complete it with the following implementation:
  667. [source,java]
  668. ----
  669. public void setCustomer(Customer customer) {
  670. this.customer = customer;
  671. binder.setBean(customer);
  672. // Show delete button for only customers already in the database
  673. delete.setVisible(customer.isPersisted());
  674. setVisible(true);
  675. firstName.selectAll();
  676. }
  677. ----
  678. In addition to saving the reference of the currently edited Customer object, we are
  679. calling the _Binder.setBean_ method. This will initialise all
  680. fields in the form and automatically update the values in the domain objects as
  681. the corresponding field value changes in the user interface.
  682. TIP: If the naming convention based databinding doesn't fit your needs, you
  683. can use
  684. https://www.vaadin.com/api/com/vaadin/annotations/PropertyId.html[PropertyId]
  685. annotation on fields to explicitly declare the edited property.
  686. We'll also want to ensure the form is visible and that the focus goes to the
  687. firstName field to improve the user experience. As we will be using the form to
  688. edit both new non-persisted objects and existing customers, we will also show
  689. the delete button only for customers that are already persisted in the backend.
  690. The last thing we need to do is to handle save and delete button clicks. Add
  691. the following methods to the CustomerForm class:
  692. [source,java]
  693. ----
  694. private void delete() {
  695. service.delete(customer);
  696. myUI.updateList();
  697. setVisible(false);
  698. }
  699. private void save() {
  700. service.save(customer);
  701. myUI.updateList();
  702. setVisible(false);
  703. }
  704. ----
  705. Finally, we'll add listeners to the buttons to call these methods. Adding these
  706. simple lambda expressions to the constructor will take care of that:
  707. [source,java]
  708. ----
  709. save.addClickListener(e -> this.save());
  710. delete.addClickListener(e -> this.delete());
  711. ----
  712. TIP: For a truly re-usable form component in a real life project, you'd want to
  713. introduce an interface to replace the myUI field or, even better, use an event
  714. system like https://vaadin.com/wiki/-/wiki/main/Events+and+contexts[CDI events]
  715. to completely decouple the components. We'll leave that out of this tutorial for
  716. simplicity.
  717. [[framework.tutorial.form-connection]]
  718. == Connecting the form to the application
  719. TIP: Starting from this step directly? https://github.com/vaadin/tutorial/archive/v8-step6.zip[Download the project] for this step, extract the zip file and choose menu:Import...[Maven>Existing Maven project].
  720. In this part, we'll use the CustomerForm class, which we created in the
  721. previous step, from the MyUI class. We will use it for both editing the existing
  722. customers and creating new ones.
  723. The following video shows how to do this step of the tutorial:
  724. video::eMCWf3PfXLs[youtube, width="640", height="400"]
  725. In the previous part, we already added the form to the _MyUI_ to see what it looks
  726. like. By default, we want it to be invisible, so let's first hide it
  727. by adding this line to the _init_ method of MyUI class:
  728. [source,java]
  729. ----
  730. form.setVisible(false);
  731. ----
  732. To edit the customer chosen from the Grid, add the following selection listener to
  733. the end of the _init_ method:
  734. [source,java]
  735. ----
  736. grid.asSingleSelect().addValueChangeListener(event -> {
  737. if (event.getValue() == null) {
  738. form.setVisible(false);
  739. } else {
  740. form.setCustomer(event.getValue());
  741. }
  742. });
  743. ----
  744. In the listener, we simply take the Customer object of the selected row and pass it to
  745. the CustomerForm for editing. In the previous step, we added a side effect to the
  746. _setCustomer_ method that will bind the domain object to the corresponding fields
  747. and make it visible. If the selection is empty, we'll hide the form.
  748. To allow users to also create new customer records, we'll create a simple "Add
  749. customer button" to the top of the UI, right next to the _filtering_ composition
  750. we have already built from a CssLayout, a TextField and a Button. Introduce the new
  751. Button with a click listener, by adding the following lines to the _init_ method,
  752. right after where you introduced the _filtering_ composition:
  753. [source,java]
  754. ----
  755. Button addCustomerBtn = new Button("Add new customer");
  756. addCustomerBtn.addClickListener(e -> {
  757. grid.asSingleSelect().clear();
  758. form.setCustomer(new Customer());
  759. });
  760. ----
  761. In the click listener, we first clear a possible selection from the grid and then
  762. instantiate a new Customer object and pass that to the form for editing.
  763. To add it beside our _filtering_ composition, we can use a HorizontalLayout to
  764. create a toolbar where we place both components. First, introduce a toolbar like
  765. this after the previously created _addCustomerBtn_:
  766. [source,java]
  767. ----
  768. HorizontalLayout toolbar = new HorizontalLayout(filtering, addCustomerBtn);
  769. ----
  770. And, again, *replace* the line that populates your main layout to add the
  771. toolbar instead of just the filtering composition, which we just moved to the
  772. _toolbar_ layout.
  773. [source,java]
  774. ----
  775. layout.addComponents(toolbar, main);
  776. ----
  777. All planned features are now done. You can save the changes and play around with
  778. the application. If something went wrong, you can also download an example of
  779. https://github.com/vaadin/tutorial[the final application] and see what went wrong.
  780. [[framework.tutorial.next]]
  781. == It works! What next?
  782. Congratulations! Users can now create, read, update and delete customer records
  783. stored in the demo backend and you have completed creating your first CRUD UI
  784. with Vaadin.
  785. If you are an experienced Java developer, you are probably already full of ideas of
  786. how you can use your existing skills and create new shiny web UIs for your
  787. existing Java apps. If you want more ideas of how to create full stack
  788. applications, you might, for example, go through the
  789. http://spring.io/guides/gs/crud-with-vaadin/[Creating CRUD UI with Vaadin] guide
  790. and create a bit similar UI with a real database backend implemented with Spring
  791. Data JPA. We have also collected a couple of other resources for an easy
  792. start in your Vaadin developer career.
  793. * https://vaadin.com/docs/-/part/framework/introduction/intro-overview.html[Vaadin online documentation]
  794. * https://vaadin.com/full-stack-starter[Bakery App Starter for Vaadin Framework 8 and Spring] - A fully functional and tested full stack application for you to use as a starting point and a reference implementation on how business grade Vaadin applications should be made.
  795. * http://spring.io/guides/gs/crud-with-vaadin/[Creating CRUD UI with Vaadin] - the tutorial for your first Vaadin application using a Spring based backend.
  796. * https://github.com/mstahv/jpa-invoicer[Jave EE example app] - a Vaadin app example for creating invoices that uses Java EE backend, Apache DeltaSpike Data for simple JPA layer, OAuth2 based login, PDF generation etc.
  797. * http://vaadin.com/directory[Directory] - a vast source of awesome Vaadin add-ons