- Spring MVC Beginner’s Guide
- Amuthan G
- 262字
- 2021-07-16 11:25:41
Time for action – adding Java version properties in pom.xml
We successfully added all the required jars to our project, but we need to perform one small configuration in our pom.xml
file, that is, telling Maven to use Java Version 7 while building our project. How do we tell Maven to do this? Simply add two property entries in pom.xml
. Let's do this.
- Open
pom.xml
. You will see some tabs at the bottom ofpom.xml
; select the Overview tab from the bottom ofpom.xml
, expand the properties accordion, and click on the Create button. - Now, an Add property window will appear; enter Name as
maven.compiler.source
and Value as1.7
.Adding the Java compiler version properties to POM
- Similarly, create one more property with Name as
maven.compiler.target
and Value as1.7
. - Finally, save
pom.xml
.
A jump-start to MVC
We created our project and added all the required jars, so we are ready to code. We are going to incrementally build an online web store throughout this book, chapter by chapter. As a first step, let's create a home page in our project to welcome our customers.
Our aim is simple; when we enter the http://localhost:8080/webstore/
URL on the browser, we would like to show a welcome page that is similar to the following screenshot:

Don't worry if you are not able to understand some of the code; we are going to take a look at each concept in detail in the upcoming chapters. As of now, our aim is to have quick hands-on experience of developing a simple web page using Spring MVC.
- Voice Application Development for Android
- MySQL 8.x從入門(mén)到精通(視頻教學(xué)版)
- 從0到1:JavaScript 快速上手
- MATLAB Graphics and Data Visualization Cookbook
- R語(yǔ)言數(shù)據(jù)挖掘
- Construct 2 Game Development by Example
- Access數(shù)據(jù)庫(kù)開(kāi)發(fā)從入門(mén)到精通
- Access 2010數(shù)據(jù)庫(kù)程序設(shè)計(jì)實(shí)踐教程
- 數(shù)據(jù)庫(kù)查詢(xún)優(yōu)化器的藝術(shù):原理解析與SQL性能優(yōu)化
- 數(shù)據(jù)賦能
- 實(shí)用預(yù)測(cè)分析
- 敏捷數(shù)據(jù)分析工具箱:深入解析ADW+OAC
- Access 2013 數(shù)據(jù)庫(kù)管理與應(yīng)用從新手到高手
- 2D 計(jì)算機(jī)視覺(jué):原理、算法及應(yīng)用
- Access數(shù)據(jù)庫(kù)教程(2010版)