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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980
  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 need about 20 to 60 minutes to complete the tutorial, 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=PLcRrh9hGNalkIgvImLRO9u3D0YpmEWuqo[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. You can get an overview of this step with the following video, which first shows how to install Eclipse, then how to create a Vaadin application using Maven, and finally how to run it:
  68. video::o93ofXBIkf8[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 http://vaadin.com/download/[vaadin.com/download].
  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 will take a while, as Maven might again need to download some new modules.
  128. Also, the project uses add-ons and contains a project specific theme.
  129. Compiling them takes a while.
  130. TIP: For the Maven compilation to work you need a JDK to be configured in your
  131. Eclipse in "Window > Preferences > Java > Installed JREs > Add...".
  132. 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.
  133. The JDK by default installs to [filename]#\Program Files\Java# on Windows.
  134. You can make JDK the default JRE for your Eclipse.
  135. While the build is running, let us have a look at what the archetype created for
  136. you.
  137. You can browse your project resources from the tree structure in the [guilabel]#Project Explorer#.
  138. Maven's [filename]#pom.xml# on top level contains settings for building your project and declares the used dependencies.
  139. 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.
  140. TIP: Eclipse shows all project files in the Project Explorer.
  141. In this case, you can also find your [filename]#.java# files from under the top-level [filename]#src# node.
  142. However, the suggested method is to access them from under the [guilabel]#Java Resources# node, which is optimized for editing Java source code.
  143. The UI code (and the Servlet declaration) used by the application stub can be
  144. found in the [filename]#MyUI.java# file.
  145. Let us read it through to see how it works.
  146. The [methodname]#init()# method of a UI class is triggered when a user enters your web application.
  147. The [classname]#VerticalLayout# is one of the most used layout components, which
  148. are used to position and display other Vaadin components in your UI classes.
  149. 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.
  150. 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#.
  151. To test your first Vaadin application, right-click on the project and choose "Debug as > Maven build...".
  152. 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.
  153. [[figure.framework.tutorial.debug-as-maven-build]]
  154. .Starting the server using a Maven target
  155. image::img/debugAsMavenBuild.jpg[]
  156. In the dialog, type `Run in jetty` to the [guilabel]#Name# input and `jetty:run` to the [guilabel]#Goals# input.
  157. [[figure.framework.tutorial.jetty-run]]
  158. .Generating a Maven launch for `jetty:run` target
  159. image::img/debugAsMavenBuild2.jpg[]
  160. Before clicking debug, to make sure debugging works properly, add your Java
  161. project to the source lookup path from the [guilabel]#Source# tab, as it is being done in <<figure.tutorial.creating.add-sources>>.
  162. [[figure.tutorial.creating.add-sources]]
  163. .Adding sources for debugging
  164. image::img/debugAsMavenBuildAddSources.jpg[]
  165. Now click [guibutton]#Debug# to continue.
  166. This will download a small Java web server (if not cached to your local Maven repository), and use it to host your application.
  167. Once the server has started, point your browser to the URL http://localhost:8080/[http://localhost:8080/] to see the running application.
  168. If you make changes to the code, the Jetty server will notice the changes and in
  169. a couple of seconds most changes are automatically deployed.
  170. Reloading the page in your browser will show the changes.
  171. TIP: In some cases your JVM might not allow injecting changes on the fly.
  172. In these cases, Eclipse will complain about "Hot code replacement error".
  173. Just choose to restart the server to get the latest changes.
  174. Many Java developers use a commercial tool called http://zeroturnaround.com/software/jrebel/[JRebel] to make code replacement work better.
  175. 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.
  176. 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.
  177. Double-click on the line number in the Java editor, for example of the following line in the click listener:
  178. [source,java]
  179. ----
  180. layout.addComponent(new Label("Thanks " + name.getValue()));
  181. ----
  182. Doing so adds a breakpoint to the selected line.
  183. If you then click the button in your browser, the execution of the application will stop on that line.
  184. Eclipse will ask you to enter to _Debugging perspective_.
  185. That way you can step through the execution and inspect the variables.
  186. Clicking on the _play_ icon in the toolbar will continue the execution.
  187. Double-click the same line again to remove the breakpoint.
  188. [[figure.framework.tutorial.breakpoint]]
  189. .Execution in a break point in the button click listener
  190. image::img/debugInBreakPointVariable.jpg[]
  191. Clicking the red square in the [guilabel]#Console# view will terminate the server process.
  192. You can restart it easily form the run/debug history.
  193. 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.
  194. Alternatively, you can use the main menu "Run > Run
  195. history/Debug history > Run in Jetty".
  196. 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.
  197. The following video shows how to implement a _Hello World_ application from scratch:
  198. video::9-qwPfpSHWc[youtube, width="640", height="400"]
  199. [[framework.tutorial.backend]]
  200. == Adding a demo "backend"
  201. Before getting more into real Vaadin development, let us introduce some domain objects and a "fake backend".
  202. In a real-world application, you will most likely have something similar, implemented with, for example, JPA and EJB or a Spring-based service.
  203. The following video covers steps 3 and 4 (<<framework.tutorial.grid>>) of this tutorial:
  204. video::0W0frepDKWI[youtube, width="640", height="400"]
  205. Copy the following three classes from github to your project.
  206. Class names point to the classes hosted in Github.
  207. Copying classes can be done in many ways.
  208. TIP: The fastest way to copy classes using Eclipse is to use your good old
  209. clipboard. Select the text content of the whole class from your browser, choose
  210. "Edit > Copy", focus the node representing the [packagename]#my.vaadin.app# Java package in Eclipse's Java Resources view and choose "Edit > Paste".
  211. Eclipse is smart enough to automatically create a properly named Java file for the class.
  212. * https://raw.githubusercontent.com/vaadin/tutorial/v7/src/main/java/my/vaadin/app/CustomerStatus.java[CustomerStatus] - this is a simple enum class
  213. * https://raw.githubusercontent.com/vaadin/tutorial/v7/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
  214. * https://raw.githubusercontent.com/vaadin/tutorial/v7/src/main/java/my/vaadin/app/CustomerService.java[CustomerService] - this is a simple facade via which you can request and modify [classname]#Customer# instances.
  215. You can think of this as your entry point to your fake database.
  216. In the next steps, we will be using these classes and build a UI around them.
  217. The actual implementation of these classes is not relevant for this tutorial, but feel free to have a look around.
  218. [[framework.tutorial.grid]]
  219. == Listing entities in a Grid
  220. TIP: Starting from this step directly? https://github.com/vaadin/tutorial/archive/v7-step3.zip[Download the project] for this step, extract the zip file and choose "Import... > Maven > Existing Maven project".
  221. Often when you start building a UI for a data-centric application, the first
  222. thing you want to do is to list your data from your back-end.
  223. There are several components and ways in Vaadin to do this.
  224. In this example, we will use the Grid component for tabular presentation of our customers.
  225. We start by introducing a [classname]#Grid# to the [classname]#MyUI# class.
  226. 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.
  227. Also, let us get a reference to the [classname]#CustomerService#.
  228. [source,java]
  229. ----
  230. public class MyUI extends UI {
  231. // Add the next two lines:
  232. private CustomerService service = CustomerService.getInstance();
  233. private Grid grid = new Grid();
  234. // The rest is already there...
  235. @Override
  236. protected void init(VaadinRequest vaadinRequest) {
  237. ...
  238. ----
  239. TIP: If you are new to Java development, you probably do not feel comfortable
  240. with the red compilation error for the line where the [classname]#Grid# got introduced, because of a missing import.
  241. This is easily fixed in Eclipse by using the
  242. menu:Source[Organize Imports] command. Learn its shortcut (kbd:[Ctrl-Shift-O] or
  243. kbd:[CMD-Shift-O] on Macs), you'll be using it a lot in Java development. In
  244. possible class name collisions, always choose the appropriate class from the
  245. _com.vaadin.ui_ package if you want to import core Vaadin UI classes like the
  246. Grid.
  247. To simply list all properties of all Customer objects from the backend service,
  248. replace the init method with the following snippet:
  249. [source,java]
  250. ----
  251. @Override
  252. protected void init(VaadinRequest vaadinRequest) {
  253. final VerticalLayout layout = new VerticalLayout();
  254. // add Grid to the layout
  255. layout.addComponents(grid);
  256. // fetch list of Customers from service and assign it to Grid
  257. List<Customer> customers = service.findAll();
  258. grid.setContainerDataSource(new BeanItemContainer<>(Customer.class, customers));
  259. layout.setMargin(true);
  260. setContent(layout);
  261. }
  262. ----
  263. TIP: Again, use the organize imports feature. The List object we use here is
  264. _java.util.List_.
  265. As we'll want to refresh the listing from various places in our application,
  266. extract the customer listing part into its own "updateList" method with the
  267. *public* modifier. The public modifier is handy later when we want to update the
  268. listing from other classes. You can let Eclipse help here by selecting the
  269. relevant lines and using the "quick fix" feature (kbd:[Ctrl+1] or kbd:[Cmd+1] on
  270. Macs). The extracted method call looks like this:
  271. [source,java]
  272. ----
  273. public void updateList() {
  274. List<Customer> customers = service.findAll();
  275. grid.setContainerDataSource(new BeanItemContainer<>(Customer.class, customers));
  276. }
  277. ----
  278. If you try the application now, you'll see that quite many properties of the
  279. customers are shown in the grid. To limit the visible properties, configure
  280. the Grid using the _setColumns_ method to only show "firstName", "lastName" and
  281. "email" properties.
  282. [source,java]
  283. ----
  284. grid.setColumns("firstName", "lastName", "email");
  285. ----
  286. At this point the body of the MyUI class should look like this (servlet declaration
  287. omitted):
  288. [source,java]
  289. ----
  290. private CustomerService service = CustomerService.getInstance();
  291. private Grid grid = new Grid();
  292. @Override
  293. protected void init(VaadinRequest vaadinRequest) {
  294. final VerticalLayout layout = new VerticalLayout();
  295. grid.setColumns("firstName", "lastName", "email");
  296. // add Grid to the layout
  297. layout.addComponent(grid);
  298. updateList();
  299. layout.setMargin(true);
  300. setContent(layout);
  301. }
  302. public void updateList() {
  303. // fetch list of Customers from service and assign it to Grid
  304. List<Customer> customers = service.findAll();
  305. grid.setContainerDataSource(new BeanItemContainer<>(Customer.class, customers));
  306. }
  307. ----
  308. You can now save your changes to the file and verify the changes from your browser.
  309. You can do this at any point during the rest of the tutorial as well.
  310. [[framework.tutorial.filtering]]
  311. == Creating live filtering for entities
  312. TIP: Starting from this step directly? https://github.com/vaadin/tutorial/archive/v7-step4.zip[Download the project] for this step, extract the zip file and choose menu:Import...[Maven>Existing Maven project].
  313. A search functionality is expected in every modern application and it is
  314. also a nice Vaadin development exercise. Let's add a filtering functionality to
  315. the Customer listing we created in the previous step.
  316. The following video shows how to do this step of the tutorial:
  317. video::fAeC_mZH_7w[youtube, width="640", height="400"]
  318. We'll start by introducing a [classname]#TextField# component as a field to our [classname]#UI# class:
  319. [source,java]
  320. ----
  321. private TextField filterText = new TextField();
  322. ----
  323. In the [methodname]#init()# method, configure the text field to contain a helpful input prompt
  324. and add a text change listener to the field. The exact place of these lines is
  325. not important, but add them, for example, after you have introduced the _layout_
  326. object.
  327. [source,java]
  328. ----
  329. filterText.setInputPrompt("filter by name...");
  330. filterText.addTextChangeListener(e -> {
  331. grid.setContainerDataSource(new BeanItemContainer<>(Customer.class,
  332. service.findAll(e.getText())));
  333. });
  334. ----
  335. TIP: To keep your code more readable, you can use autoformat after you write or
  336. copy paste code snippets. The default keyboard shortcut in Eclipse is
  337. kbd:[Ctrl+Shift+F] or kbd:[Cmd+Shift+F]
  338. The text change listener is another listener (in addition to the more commonly
  339. used ValueChangeListener) you can use with text fields in Vaadin. It is fired
  340. lazily while the user is typing, but only when there is a small pause in the
  341. typing. This makes it perfect for this kind of automatic filtering. When the
  342. user has changed the text, we'll just update the listing like in the updateList
  343. method, but use the current text as a filter for entries.
  344. To keep the _updateList_ method functional, it should also take into
  345. consideration the possible value in the filterText field. Change the line for
  346. fetching the customers into this:
  347. [source,java]
  348. ----
  349. List<Customer> customers = service.findAll(filterText.getValue());
  350. ----
  351. Before adding the text field to the UI, let's improve the usability a bit
  352. and make a short exercise to compose better components from lower level UI
  353. components. The search field can naturally be cleared with the keyboard, but let's
  354. add a clear button next to the text field. Start by adding the following lines
  355. to the init method, for example right after your filterText configuration:
  356. [source,java]
  357. ----
  358. Button clearFilterTextBtn = new Button(FontAwesome.TIMES);
  359. clearFilterTextBtn.setDescription("Clear the current filter");
  360. clearFilterTextBtn.addClickListener(e -> {
  361. filterText.clear();
  362. updateList();
  363. });
  364. ----
  365. Vaadin contains a set of built in icons, from which we use the "X" icon,
  366. _FontAwesome.TIMES_, here, which most users will recognise as a functionality to clear
  367. the value. If we set the description to a component, it will be shown as a
  368. tooltip for those users who hover the cursor over the button and wonder what to
  369. do with it. In the click listener, we simply clear the text from the field and
  370. refresh the content of the listing.
  371. Vaadin contains lots of different kinds of layouts. The simplest way to align
  372. the text field and the button next to each other would be to use a
  373. HorizontalLayout. An alternative way we use here is using a CssLayout, which is
  374. a lightweight layout that is easy to customize with css. Even if you wouldn't
  375. want to play with CSS yourself, you can often use one of the existing style
  376. rules in the default _Valo_ theme. The following snippet will create a nice
  377. compact "composition" of both the TextField and the clear button. Add these
  378. lines to the init method right after you configured the _clearFilterTextBtn_:
  379. [source,java]
  380. ----
  381. CssLayout filtering = new CssLayout();
  382. filtering.addComponents(filterText, clearFilterTextBtn);
  383. filtering.setStyleName(ValoTheme.LAYOUT_COMPONENT_GROUP);
  384. ----
  385. Finally, *change* the row in the init method that currently adds only the grid,
  386. to add both _filtering_ composition and the _grid_ to the main _layout_ of the
  387. application.
  388. [source,java]
  389. ----
  390. layout.addComponents(filtering, grid);
  391. ----
  392. Now it is a good place to save your changes and try them in your browser.
  393. [[framework.tutorial.form]]
  394. == Creating a form to edit Customer objects
  395. To edit and add Customer objects we need to create a form, that edits the
  396. values in our domain objects. This tutorial has two alternative methods to do
  397. that. Pick either of them.
  398. [[framework.tutorial.form.designer]]
  399. === Creating a form using Vaadin Designer
  400. TIP: Starting from this step directly? https://github.com/vaadin/tutorial/archive/v7-step5.zip[Download the project] for this step, extract the zip file and choose menu:Import...[Maven>Existing Maven project].
  401. The form to edit Customer objects can be built using several methods of which
  402. the visual composition by drag 'n' drop is the most intuitive. Vaadin
  403. Designer is an Eclipse plugin that you can install and do WYSIWYG editing of
  404. your view code. We'll use it to create the form and then hook the editing logic
  405. to it with Java.
  406. TIP: If you are using another IDE or just prefer to compose your user interface
  407. with code, take the alternative step, <<Creating a form using plain Java>>,
  408. where the CustomerForm is composed using plain Java code.
  409. [[framework.tutorial.form.designer.install]]
  410. ==== Installing Vaadin Designer
  411. Vaadin Designer comes as an integrated part of Vaadin Plugin for Eclipse. It can
  412. be installed easily via Eclipse Marketplace. Choose menu:Help[Eclipse Marketplace]
  413. In the dialog, just search for Vaadin and click _install_ to mark it for
  414. installation. Clicking _Install Now_ will take you to choose the modules you want
  415. and accept the license agreement.
  416. [[figure.framework.tutorial.plugin-install]]
  417. .Selecting Vaadin Plugin for Eclipse for installation in Eclipse Marketplace
  418. image::img/pluginEclipseMarketPlace2.jpg[]
  419. If you get a security warning about the software containing unsigned content,
  420. just accept the warning by clicking OK. After installation, Eclipse asks if you
  421. want to restart. Click Yes.
  422. TIP: When you use Vaadin Designer for the first time in the next
  423. step, it will ask for a license key. Get a key from
  424. https://vaadin.com/designer. If you are not willing to buy a license now, just
  425. acquire a trial license.
  426. [[framework.tutorial.form.designer.create]]
  427. ==== Creating the form design
  428. The following screencast will show you how to produce the
  429. _CustomerFormDesign.html_, a design file we need in this tutorial. Use pause and
  430. slow motion to follow better what is being done in the video. Feel free to get creative!
  431. video::B5dN69NSS78[youtube, width="640", height="400"]
  432. TIP: At any point of the process, you can also switch to the markup mode where
  433. you can edit the raw content of the .html file. If you wish to take a shortcut
  434. or think you did something wrong when using the designer, you can just
  435. 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.
  436. At this point we only have a static mockup of the actual UI. To implement a
  437. functional form component, we need some Java code as well. Vaadin Designer
  438. automatically creates a similarly named Java class, but a good habit is to never touch the auto-generated file, in this case the
  439. CustomerFormDesign.java file. If you'd introduce a new field to your form,
  440. your changes to CustomerFormDesign would be overridden by the tooling. Instead,
  441. we'll create a class called CustomerForm which inherits from the auto-generated
  442. CustomerFormDesign class.
  443. Start by creating a new Java class with the name CustomerForm. In Eclipse, right
  444. click on the "my.vaadin.app" package and choose menu:New[Class]. Type in the
  445. name _CustomerForm_, define the superclass as
  446. _my.vaadin.app.CustomerFormDesign_ and click _finish_.
  447. From the superclass, we inherit all the UI elements that we named when using
  448. the designer. E.g. by simply referencing to "save" field in the CustomerForm,
  449. we'll have access to the save button we previously created.
  450. We will later need a reference to the currently edited Customer object,
  451. CustomerService and the MyUI that uses this class. Add these fields and a
  452. basic constructor that accepts MyUI as a parameter to the CustomerForm class:
  453. [source,java]
  454. ----
  455. private CustomerService service = CustomerService.getInstance();
  456. private Customer customer;
  457. private MyUI myUI;
  458. public CustomerForm(MyUI myUI) {
  459. this.myUI = myUI;
  460. }
  461. ----
  462. Although the form is not yet fully functional, you might want to see what it
  463. looks like at this point. Add it as a field to the _MyUI_ class:
  464. [source,java]
  465. ----
  466. private CustomerForm form = new CustomerForm(this);
  467. ----
  468. Now let's modify the init method in MyUI to show the form. Let's wrap both the
  469. Grid and the CustomerForm in a horizontal layout and configure the Grid to use
  470. all of the available space more efficiently. Replace the line
  471. *layout.addComponents(filtering, grid);* with the following:
  472. [source,java]
  473. ----
  474. HorizontalLayout main = new HorizontalLayout(grid, form);
  475. main.setSpacing(true);
  476. main.setSizeFull();
  477. grid.setSizeFull();
  478. main.setExpandRatio(grid, 1);
  479. layout.addComponents(filtering, main);
  480. ----
  481. If you now save your changes and reload your application page in a browser,
  482. you should see your CustomerForm next to the grid that lists your
  483. existing entities.
  484. Let's get back to the CustomerForm. The first thing we'll need is to populate
  485. the options for the select. To add all enum values as valid selections, add the
  486. following line to the constructor:
  487. [source,java]
  488. ----
  489. status.addItems(CustomerStatus.values());
  490. ----
  491. Let's also improve the UX a bit. When building the design, we already
  492. emphasized the save button with a ValoTheme.BUTTON_PRIMARY style name. Thus, it
  493. would be natural if the enter-key would do the same action as clicking the
  494. save button. Assign a keyboard shortcut to the save button with this line in the
  495. constructor:
  496. [source,java]
  497. ----
  498. save.setClickShortcut(KeyCode.ENTER);
  499. ----
  500. To finish our form, we need to create a public API that we will use in the next
  501. part from MyUI, to pass in a Customer object that the form should edit. We
  502. will also add some logic to actually save the changes. We'll start by creating a
  503. setter method to the Customer field. Just type _setCus_ in the body of the
  504. class and hit autocomplete (kbd:[Ctrl+Space]) and Eclipse will create a method
  505. stub for you. Complete it with the following implementation:
  506. [source,java]
  507. ----
  508. public void setCustomer(Customer customer) {
  509. this.customer = customer;
  510. BeanFieldGroup.bindFieldsUnbuffered(customer, this);
  511. // Show delete button for only customers already in the database
  512. delete.setVisible(customer.isPersisted());
  513. setVisible(true);
  514. firstName.selectAll();
  515. }
  516. ----
  517. In addition to saving the reference of the currently edited Customer object, we are
  518. calling the _BeanFieldGroup.bindFieldsUnbuffered_ method. It will initialize all
  519. similarly named editor fields in this form with the values from their
  520. counterpart in the given Customer object. Also, it will automatically update the
  521. values in the domain objects as the corresponding field value changes in the
  522. user interface.
  523. TIP: If the naming convention based databinding doesn't fit your needs, you
  524. can use
  525. https://www.vaadin.com/api/com/vaadin/data/fieldgroup/PropertyId.html[PropertyId]
  526. annotation on fields to explicitly declare the edited property.
  527. We'll also want to ensure the form is visible and that focus goes to the
  528. firstName field to improve user experience. As we will be using the form to
  529. edit both new non-persisted objects and existing customers, we will also show
  530. the delete button only for customers that are already persisted in the backend.
  531. The last thing we need to do is to handle save and delete button clicks. Add
  532. the following methods to the CustomerForm class:
  533. [source,java]
  534. ----
  535. private void delete() {
  536. service.delete(customer);
  537. myUI.updateList();
  538. setVisible(false);
  539. }
  540. private void save() {
  541. service.save(customer);
  542. myUI.updateList();
  543. setVisible(false);
  544. }
  545. ----
  546. Finally, we'll add listeners to the buttons to call these methods. Adding these
  547. simple lambda expressions to the constructor will take care of that:
  548. [source,java]
  549. ----
  550. save.addClickListener(e->this.save());
  551. delete.addClickListener(e->this.delete());
  552. ----
  553. TIP: For a truly re-usable form component in a real life project, you'd want to
  554. introduce an interface to replace the myUI field or, even better, use an event
  555. system like https://vaadin.com/wiki/-/wiki/main/Events+and+contexts[CDI events]
  556. to completely decouple the components. We'll leave that out of this tutorial for
  557. simplicity.
  558. [[framework.tutorial.form.java]]
  559. === Creating a form using plain Java
  560. This is an alternative step to the <<Creating a form using Vaadin Designer>>,
  561. where you'll build the form UI programmatically in plain Java. If you already
  562. completed the step using Vaadin Designer, you can proceed to
  563. <<Connecting the form to the application>>.
  564. The following video shows how to create a form using plain Java:
  565. video::OA6-lSxiXO0[youtube, width="640", height="400"]
  566. Start by creating a new Java class with the name CustomerForm. In Eclipse right
  567. click on the "my.vaadin.app" package and choose menu:New[Class]. Type in the
  568. name _CustomerForm_, define the superclass as _com.vaadin.ui.FormLayout_ and
  569. click _finish_.
  570. In the form, we'll need editor fields for each property in our Customer domain
  571. class. There are different kinds of fields in Vaadin for editing different kinds
  572. of properties. In this example, we'll use a TextField, a PopupDateField and a
  573. NativeSelect. Add the following field declarations and action buttons as Java
  574. fields to the CustomerForm:
  575. [source,java]
  576. ----
  577. private TextField firstName = new TextField("First name");
  578. private TextField lastName = new TextField("Last name");
  579. private TextField email = new TextField("Email");
  580. private NativeSelect status = new NativeSelect("Status");
  581. private PopupDateField birthdate = new PopupDateField("Birthday");
  582. private Button save = new Button("Save");
  583. private Button delete = new Button("Delete");
  584. ----
  585. Also, we will later need a reference to the currently edited Customer object,
  586. CustomerService and the MyUI that uses this class. Add these fields and a
  587. basic constructor that accepts MyUI as a parameter to the CustomerForm class:
  588. [source,java]
  589. ----
  590. private CustomerService service = CustomerService.getInstance();
  591. private Customer customer;
  592. private MyUI myUI;
  593. public CustomerForm(MyUI myUI) {
  594. this.myUI = myUI;
  595. setSizeUndefined();
  596. HorizontalLayout buttons = new HorizontalLayout(save, delete);
  597. buttons.setSpacing(true);
  598. addComponents(firstName, lastName, email, status, birthdate, buttons);
  599. }
  600. ----
  601. In the constructor we make the form size undefined, which practically means it
  602. will consume the minimum space defined by its content. Then we'll just add all
  603. the fields to the CustomerForm and add action buttons to the bottom - side-by-side
  604. using a HorizontalLayout. Although the form is not yet fully functional, you
  605. might want to see what it looks like at this point. Add it as a field to the MyUI
  606. class:
  607. [source,java]
  608. ----
  609. private CustomerForm form = new CustomerForm(this);
  610. ----
  611. Now let's modify the init method in MyUI to show the form. Let's wrap both the
  612. Grid and the CustomerForm in a horizontal layout and configure the Grid to use
  613. all of the available space more efficiently. Replace the line
  614. *layout.addComponents(filtering, grid);* with the following:
  615. [source,java]
  616. ----
  617. HorizontalLayout main = new HorizontalLayout(grid, form);
  618. main.setSpacing(true);
  619. main.setSizeFull();
  620. grid.setSizeFull();
  621. main.setExpandRatio(grid, 1);
  622. layout.addComponents(filtering, main);
  623. ----
  624. When you now save your changes and reload your application page in your browser,
  625. you should see your CustomerForm next to the grid that lists your
  626. existing entities.
  627. Let's get back to the CustomerForm. The first thing we'll need is to populate
  628. the options for the select. To add all enum values as valid selections, add the
  629. following line to the constructor:
  630. [source,java]
  631. ----
  632. status.addItems(CustomerStatus.values());
  633. ----
  634. Let's also improve the UX a bit. The most common thing your users will want to
  635. do with this kind of form is to save it. Let's decorate the button with a style
  636. name that makes it more prominent in the UI and give it a keyboard shortcut -
  637. simply an enter hit in this case:
  638. [source,java]
  639. ----
  640. save.setStyleName(ValoTheme.BUTTON_PRIMARY);
  641. save.setClickShortcut(KeyCode.ENTER);
  642. ----
  643. To finish our form, we need to create a public API that we will use in the next
  644. part from the MyUI, to pass in a Customer object that the form should edit. We
  645. will also add some logic to actually save the changes. We'll start by creating a
  646. setter method for the Customer field. Just type _setCus_ in the body of the
  647. class and hit autocomplete (kbd:[Ctrl+Space]) and Eclipse will create a method
  648. stub for you. Complete it with the following implementation:
  649. [source,java]
  650. ----
  651. public void setCustomer(Customer customer) {
  652. this.customer = customer;
  653. BeanFieldGroup.bindFieldsUnbuffered(customer, this);
  654. // Show delete button for only customers already in the database
  655. delete.setVisible(customer.isPersisted());
  656. setVisible(true);
  657. firstName.selectAll();
  658. }
  659. ----
  660. In addition to saving the reference of the currently edited Customer object, we are
  661. calling _BeanFieldGroup.bindFieldsUnbuffered_ method. It will initialise all
  662. similarly named editor fields in this form with the values from their
  663. counterpart in the given Customer object. Also, it will automatically update the
  664. values in the domain objects as the corresponding field value changes in the
  665. user interface.
  666. TIP: If the naming convention based databinding doesn't fit your needs, you
  667. can use
  668. https://www.vaadin.com/api/com/vaadin/data/fieldgroup/PropertyId.html[PropertyId]
  669. annotation on fields to explicitly declare the edited property.
  670. We'll also want to ensure the form is visible and that the focus goes to the
  671. firstName field to improve the user experience. As we will be using the form to
  672. edit both new non-persisted objects and existing customers, we will also show
  673. the delete button only for customers that are already persisted in the backend.
  674. The last thing we need to do is to handle save and delete button clicks. Add
  675. the following methods to the CustomerForm class:
  676. [source,java]
  677. ----
  678. private void delete() {
  679. service.delete(customer);
  680. myUI.updateList();
  681. setVisible(false);
  682. }
  683. private void save() {
  684. service.save(customer);
  685. myUI.updateList();
  686. setVisible(false);
  687. }
  688. ----
  689. Finally, we'll add listeners to the buttons to call these methods. Adding these
  690. simple lambda expressions to the constructor will take care of that:
  691. [source,java]
  692. ----
  693. save.addClickListener(e->this.save());
  694. delete.addClickListener(e->this.delete());
  695. ----
  696. TIP: For a truly re-usable form component in a real life project, you'd want to
  697. introduce an interface to replace the myUI field or, even better, use an event
  698. system like https://vaadin.com/wiki/-/wiki/main/Events+and+contexts[CDI events]
  699. to completely decouple the components. We'll leave that out of this tutorial for
  700. simplicity.
  701. [[framework.tutorial.form-connection]]
  702. == Connecting the form to the application
  703. TIP: Starting from this step directly? https://github.com/vaadin/tutorial/archive/v7-step6.zip[Download the project] for this step, extract the zip file and choose menu:Import...[Maven>Existing Maven project].
  704. In this part, we'll use the CustomerForm class, which we created in the
  705. previous step, from the MyUI class. We will use it for both editing the existing
  706. customers and creating new ones.
  707. The following video shows how to do this step of the tutorial:
  708. video::HuhhsI0GJNc[youtube, width="640", height="400"]
  709. In the previous part, we already added the form to the _MyUI_ to see what it looks
  710. like. By default, we want it to be invisible, so let's first hide it
  711. by adding this line to the _init_ method of MyUI class:
  712. [source,java]
  713. ----
  714. form.setVisible(false);
  715. ----
  716. To edit the customer chosen from the Grid, add the following selection listener to
  717. the end of the _init_ method:
  718. [source,java]
  719. ----
  720. grid.addSelectionListener(event -> {
  721. if (event.getSelected().isEmpty()) {
  722. form.setVisible(false);
  723. } else {
  724. Customer customer = (Customer) event.getSelected().iterator().next();
  725. form.setCustomer(customer);
  726. }
  727. });
  728. ----
  729. In the listener, we simply take the Customer object of the selected row and pass it to
  730. the CustomerForm for editing. In the previous step, we added a side effect to the
  731. _setCustomer_ method that will bind the domain object to the corresponding fields
  732. and make it visible. If the selection is empty, we'll hide the form.
  733. To allow users to also create new customer records, we'll create a simple "Add
  734. customer button" to the top of the UI, right next to the _filtering_ composition
  735. we have already built from a CssLayout, a TextField and a Button. Introduce the new
  736. Button with a click listener, by adding the following lines to the _init_ method,
  737. right after where you introduced the _filtering_ composition:
  738. [source,java]
  739. ----
  740. Button addCustomerBtn = new Button("Add new customer");
  741. addCustomerBtn.addClickListener(e -> {
  742. grid.select(null);
  743. form.setCustomer(new Customer());
  744. });
  745. ----
  746. In the click listener, we first clear a possible selection from the grid and then
  747. instantiate a new Customer object and pass that to the form for editing.
  748. To add it beside our _filtering_ composition, we can use a HorizontalLayout to
  749. create a toolbar where we place both components. First, introduce a toolbar like
  750. this after the previously created _addCustomerBtn_:
  751. [source,java]
  752. ----
  753. HorizontalLayout toolbar = new HorizontalLayout(filtering, addCustomerBtn);
  754. toolbar.setSpacing(true);
  755. ----
  756. And, again, *replace* the line that populates your main layout to add the
  757. toolbar instead of just the filtering composition, which we just moved to the
  758. _toolbar_ layout.
  759. [source,java]
  760. ----
  761. layout.addComponents(toolbar, main);
  762. ----
  763. All planned features are now done. You can save the changes and play around with
  764. the application. If something went wrong, you can also download an example of
  765. https://github.com/vaadin/tutorial[the final application] and see what went wrong.
  766. [[framework.tutorial.next]]
  767. == It works! What next?
  768. Congratulations! Users can now create, read, update and delete customer records
  769. stored in the demo backend and you have completed creating your first CRUD UI
  770. with Vaadin.
  771. If you are an experienced Java developer, you are probably already full of ideas of
  772. how you can use your existing skills and create new shiny web UIs for your
  773. existing Java apps. If you want more ideas of how to create full stack
  774. applications, you might, for example, go through the
  775. http://spring.io/guides/gs/crud-with-vaadin/[Creating CRUD UI with Vaadin] guide
  776. and create a bit similar UI with a real database backend implemented with Spring
  777. Data JPA. We have also collected a couple of other resources for an easy
  778. start in your Vaadin developer career.
  779. * https://vaadin.com/docs/-/part/framework/introduction/intro-overview.html[Vaadin online documentation]
  780. * 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.
  781. * 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.
  782. * http://vaadin.com/directory[Directory] - a vast source of awesome Vaadin add-ons