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

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