91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在SpringBoot中利用Scala構建一個Web服務

發布時間:2021-05-18 18:06:28 來源:億速云 閱讀:280 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關怎么在SpringBoot中利用Scala構建一個Web服務,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

創建項目

初始化項目

mvn archetype:generate -DgroupId=com.edurt.ssi -DartifactId=springboot-scala-integration -DarchetypeArtifactId=maven-archetype-quickstart -Dversion=1.0.0 -DinteractiveMode=false

修改pom.xml增加java和scala的支持

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

 <modelVersion>4.0.0</modelVersion>
 <groupId>com.edurt.ssi</groupId>
 <artifactId>springboot-scala-integration</artifactId>
 <packaging>jar</packaging>
 <version>1.0.0</version>

 <name>springboot-scala-integration</name>
 <description>SpringBoot Scala Integration is a open source springboot, scala integration example.</description>

 <parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>2.1.3.RELEASE</version>
  <relativePath/> <!-- lookup parent from repository -->
 </parent>

 <properties>
  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  <java.version>1.8</java.version>
  <maven.compiler.source>1.8</maven.compiler.source>
  <maven.compiler.target>1.8</maven.compiler.target>
  <!-- dependency config -->
  <dependency.scala.version>2.12.1</dependency.scala.version>
  <!-- plugin config -->
  <plugin.maven.scala.version>3.1.3</plugin.maven.scala.version>
 </properties>

 <dependencies>
  <dependency>
   <groupId>org.scala-lang</groupId>
   <artifactId>scala-library</artifactId>
   <version>${dependency.scala.version}</version>
  </dependency>
  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-web</artifactId>
  </dependency>
 </dependencies>

 <build>
  <sourceDirectory>${project.basedir}/src/main/scala</sourceDirectory>
  <testSourceDirectory>${project.basedir}/src/test/scala</testSourceDirectory>
  <plugins>
   <plugin>
    <groupId>net.alchim31.maven</groupId>
    <artifactId>scala-maven-plugin</artifactId>
    <version>${plugin.maven.scala.version}</version>
    <executions>
     <execution>
      <goals>
       <goal>compile</goal>
       <goal>testCompile</goal>
      </goals>
     </execution>
    </executions>
   </plugin>
   <plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
   </plugin>
  </plugins>
 </build>

</project>

一個簡單的應用類

package com.edurt.ssi

import org.springframework.boot.SpringApplication
import org.springframework.boot.autoconfigure.SpringBootApplication

@SpringBootApplication
class SpringBootScalaIntegration

object SpringBootScalaIntegration extends App{

 SpringApplication.run(classOf[SpringBootScalaIntegration])

}

添加Rest API接口功能

創建一個HelloController Rest API接口,我們只提供一個簡單的get請求獲取hello,scala輸出信息

package com.edurt.ssi.controller

import org.springframework.web.bind.annotation.{GetMapping, RestController}

@RestController
class HelloController {

 @GetMapping(value = Array("hello"))
 def hello(): String = {
 return "hello,scala"
 }

}

修改SpringBootScalaIntegration文件增加以下設置掃描路徑

@ComponentScan(value = Array(
 "com.edurt.ssi.controller"
))

添加頁面功能

修改pom.xml文件增加以下頁面依賴

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

修改SpringBootScalaIntegration文件增加以下設置掃描路徑ComponentScan的value字段中

"com.edurt.ssi.view"

在src/main/resources路徑下創建templates文件夾

在templates文件夾下創建一個名為hello.mustache的頁面文件

<h2>Hello, Scala</h2>

創建頁面轉換器HelloView

package com.edurt.ssi.view

import org.springframework.stereotype.Controller
import org.springframework.web.bind.annotation.GetMapping

@Controller
class HelloView {

 @GetMapping(value = Array("hello_view"))
 def helloView: String = {
 return "hello";
 }

}

瀏覽器訪問http://localhost:8080/hello_view即可看到頁面內容

添加數據持久化功能

修改pom.xml文件增加以下依賴(由于測試功能我們使用h3內存數據庫)

<!-- data jpa and db -->
<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
 <groupId>com.h3database</groupId>
 <artifactId>h3</artifactId>
 <scope>runtime</scope>
</dependency>

修改SpringBootScalaIntegration文件增加以下設置掃描model路徑

@EntityScan(value = Array(
 "com.edurt.ssi.model"
))

創建User實體

package com.edurt.ssi.model

import javax.persistence.{Entity, GeneratedValue, Id}

@Entity
class UserModel {

 @Id
 @GeneratedValue
 var id: Long = 0

 var name: String = null

}

創建UserSupport dao數據庫操作工具類

package com.edurt.ssi.support

import com.edurt.ssi.model.UserModel
import org.springframework.data.repository.PagingAndSortingRepository

trait UserSupport extends PagingAndSortingRepository[UserModel, Long] {

}

創建UserService服務類

package com.edurt.ssi.service

import com.edurt.ssi.model.UserModel

trait UserService {

 /**
 * save model to db
 */
 def save(model: UserModel): UserModel;

}

創建UserServiceImpl實現類

package com.edurt.ssi.service

import com.edurt.ssi.model.UserModel
import com.edurt.ssi.support.UserSupport
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.stereotype.Service

@Service(value = "userService")
class UserServiceImpl @Autowired() (
         val userSupport: UserSupport
         ) extends UserService {

 /**
 * save model to db
 */
 override def save(model: UserModel): UserModel = {
 return this.userSupport.save(model)
 }

}

創建用戶UserController進行持久化數據

package com.edurt.ssi.controller

import com.edurt.ssi.model.UserModel
import com.edurt.ssi.service.UserService
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.web.bind.annotation.{PathVariable, PostMapping, RequestMapping, RestController}

@RestController
@RequestMapping(value = Array("user"))
class UserController @Autowired()(
         val userService: UserService
         ) {

 @PostMapping(value = Array("save/{name}"))
 def save(@PathVariable name: String): Long = {
 val userModel = {
  new UserModel()
 }
 userModel.name = name
 return this.userService.save(userModel).id
 }

}

使用控制臺窗口執行以下命令保存數據

curl -X POST http://localhost:8080/user/save/qianmoQ

收到返回結果

1

表示數據保存成功

增加數據讀取渲染功能

修改UserService增加以下代碼

/**
 * get all model
 */
def getAll(page: Pageable): Page[UserModel]

修改UserServiceImpl增加以下代碼

/**
 * get all model
 */
override def getAll(page: Pageable): Page[UserModel] = {
 return this.userSupport.findAll(page)
}

修改UserController增加以下代碼

@GetMapping(value = Array("list"))
def get(): Page[UserModel] = this.userService.getAll(PageRequest.of(0, 10))

創建UserView文件渲染User數據

package com.edurt.ssi.view

import com.edurt.ssi.service.UserService
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.data.domain.PageRequest
import org.springframework.stereotype.Controller
import org.springframework.ui.Model
import org.springframework.web.bind.annotation.GetMapping

@Controller
class UserView @Autowired()(
        private val userService: UserService
       ) {

 @GetMapping(value = Array("user_view"))
 def helloView(model: Model): String = {
 model.addAttribute("users", this.userService.getAll(PageRequest.of(0, 10)))
 return "user"
 }

}

創建user.mustache文件渲染數據(自行解析返回數據即可)

{{users}}

瀏覽器訪問http://localhost:8080/user_view即可看到頁面內容

增加單元功能

修改pom.xml文件增加以下依賴

<!-- test -->
<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-test</artifactId>
 <scope>test</scope>
 <exclusions>
  <exclusion>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
  </exclusion>
  <exclusion>
   <groupId>org.mockito</groupId>
   <artifactId>mockito-core</artifactId>
  </exclusion>
 </exclusions>
</dependency>
<dependency>
 <groupId>org.junit.jupiter</groupId>
 <artifactId>junit-jupiter-engine</artifactId>
 <scope>test</scope>
</dependency>

創建UserServiceTest文件進行測試UserService功能

package com.edurt.ssi

import com.edurt.ssi.service.UserService
import org.junit.jupiter.api.Test
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.context.SpringBootTest
import org.springframework.data.domain.PageRequest

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
class UserServiceTest @Autowired()(
         private val userService: UserService) {

 @Test
 def `get all`() {
 println(">> Assert blog page title, content and status code")
 val entity = this.userService.getAll(PageRequest.of(0, 1))
 print(entity.getTotalPages)
 }

}

springboot是什么

springboot一種全新的編程規范,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。

看完上述內容,你們對怎么在SpringBoot中利用Scala構建一個Web服務有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

无极县| 抚远县| 甘德县| 彰化县| 蓝山县| 定远县| 双桥区| 商都县| 富锦市| 桐庐县| 高唐县| 沁阳市| 昌邑市| 若羌县| 莫力| 班玛县| 白朗县| 芷江| 彝良县| 西乡县| 钦州市| 芜湖县| 保德县| 澄江县| 长子县| 大英县| 靖安县| 大安市| 旌德县| 景洪市| 临江市| 孟州市| 得荣县| 东光县| 彭泽县| 和硕县| 清河县| 沂南县| 南阳市| 施秉县| 九寨沟县|