June 2014
Beginner to intermediate
304 pages
7h 25m
English
The Spring tag library provides some special <form> and <input> tags that are more or less similar to HTML form and input tags, but it has some special attributes to bind the form elements data with the form-backing bean. Let's create a Spring web form in our application to add new products to our product list by performing the following steps:
ProductRepository interface and add one more method declaration in it as follows:void addProduct(Product product);
InMemoryProductRepository class as follows:public void addProduct(Product product) {
listOfProducts.add(product);
}ProductService interface and add one more method declaration ...