Springboot快速上手- 第二篇 helloWord走起

lee_lgw發表於2021-09-09

1 基礎工程建立

##1:建立一個maven工程

##2:加入parent

 <parent>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-parent</artifactId>
     <version>1.5.6.RELEASE</version>
 </parent>

##3:加入啟動依賴

 <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-web</artifactId>
 </dependency>

##4:設定properties

 <properties>
     <java.version>1.8</java.version>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <start-class>com.cc.Application</start-class>
 </properties>

##5:配置springboot 外掛

 <build>
     <finalName>springbootstudy</finalName>
     <plugins>
         <plugin>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-maven-plugin</artifactId>
         </plugin>
     </plugins>
 </build>

##6:開發Controller

@Controller
@RequestMapping("/hello")
public class FirstController {
    @RequestMapping("/abc")
    @ResponseBody
    public String abc() {
       System.out.println("now in FirstController.abc");
       return "Hello World!";
    }
}

##7:啟動類

@SpringBootApplication
public class App {
   public static void main(String[] args) {
     //負責啟動引導應 用程式
     SpringApplication.run(App.class, args);
   }
}

##8:啟動執行

先執行啟動類,然後在瀏覽器輸入:
@SpringBootApplication:開啟元件掃描和自動配置,
實際 上,@SpringBootApplication將三個有用的註解組合在了一起:
Spring的@Configuration:標明該類使用Spring基於Java的配置
Spring的@ComponentScan:啟用元件掃描
Spring Boot的@EnableAutoConfiguration:開啟Spring Boot自動配置
圖片描述

圖片描述

2 加入資料層

##1:環境設定

(1)加入依賴

 <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-data-jpa</artifactId>
 </dependency>
 <dependency>
     <groupId>mysql</groupId>
     <artifactId>mysql-connector-java</artifactId>
     <version>5.1.43</version>
 </dependency>

(2)在資料庫中建立一個庫springbootstudy,同時建一個表tbl_user,有如下欄位:uuid、name、age

(3)配置資料來源、配置jpa對hibernate的支援,在resources資料夾中建立一個application.properties檔案,基本配置如下:

spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/springbootstudy?useUnicode=true&characterEncoding=UTF-8
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.max-active=20
spring.datasource.max-idle=8
spring.datasource.min-idle=8
spring.datasource.initial-size=10
spring.jpa.database=MySQL
spring.jpa.show-sql=true
spring.jpa.generate-ddl=false
spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.current_session_context_class=org.springframework.orm.hibernate4.SpringSessionContext
spring.jpa.properties.hibernate.format_sql=true
spring.jpa.properties.hibernate.use_sql_comments=false
spring.hibernate.packageScan=com.cc
spring.jta.transaction-manager-id=transactionManager
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect

2:新增user模組,先寫vo

3:新增dao及實現,DAO介面示例如下:

public interface UserDAO<M extends UserModel> {

   public String create(M m);
   public void update(M m);
   public void delete(String uuid);
   public M getByUuid(String uuid);
   public List<M> getAll();
}

4:新增java配置

為了支援直接注入Hibernate的SessionFactory,建立一個H4Conf的類,採用java配置的方式:

@Configuration
public class H4Conf {
    @Bean
    public SessionFactory sessionFactory(HibernateEntityManagerFactory hemf) {
       return hemf.getSessionFactory();
    }
}

新增Service及實現

新增Controller實現

3 新增頁面,使用ThymeLeaf

##1:環境構建

(1)在application.properties中新增:

 spring.thymeleaf.cache=false
 spring.thymeleaf.prefix=classpath:/templates

(2)新增依賴

 <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-thymeleaf</artifactId>
 </dependency>

##2:在resources下面新增templates,在templates下面新增user資料夾,下面用來存放頁面

##3:使用ThymeLeaf開發的頁面,比如userAdd.html,示例如下:

<!DOCTYPE HTML>
<html xmlns:th="">
<head>
    <title>hello</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<form th:action="@{/user/add}" method="post">
<table>
	<tr>
		<td>uuid</td>
		<td><input type="text" name="uuid" id="uuid"/></td>
	</tr>
	<tr>
		<td>name</td>
		<td><input type="text" name="name" id="name"/></td>
	</tr>
	<tr>
		<td>age</td>
		<td><input type="text" name="age" id="age"/></td>
	</tr>
	<tr>
		<td></td>
		<td><input type="submit" value="儲存"/></td>
	</tr>
</table>
</form>
</body>
</html>

4 啟動執行


圖片描述

圖片描述

圖片描述

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1020/viewspace-2825707/,如需轉載,請註明出處,否則將追究法律責任。

相關文章