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

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