- 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.
- Python絕技:運用Python成為頂級數據工程師
- 云數據中心基礎
- DB29forLinux,UNIX,Windows數據庫管理認證指南
- Oracle RAC 11g實戰(zhàn)指南
- MySQL從入門到精通(第3版)
- 大數據架構和算法實現(xiàn)之路:電商系統(tǒng)的技術實戰(zhàn)
- 數據庫原理與應用(Oracle版)
- AI時代的數據價值創(chuàng)造:從數據底座到大模型應用落地
- 淘寶、天貓電商數據分析與挖掘實戰(zhàn)(第2版)
- 活用數據:驅動業(yè)務的數據分析實戰(zhàn)
- 數據賦能
- Hands-On Deep Learning for Games
- 數據中臺實戰(zhàn):手把手教你搭建數據中臺
- 代碼的未來
- Redis 6開發(fā)與實戰(zhàn)