SpringBoot系列之集成Scala开发API接口

x33g5p2x  于2022-04-22 转载在 Spring  
字(10.6k)|赞(0)|评价(0)|浏览(680)

SpringBoot系列之集成Scala开发API接口

最近需要用scala去写一些数据同步的程序,结合ETL实现,因为不熟悉scala语法,所以想到scala里结合springboot框架,快速开发,并没有系统学习scala,有些代码可能不够精简,有问题欢迎提出

后端主要技术栈:

  • Scala 2.11.12
  • JDK 1.8
  • SpringBoot 2.2.1.RELEASE
  • Mybatis Plus 3.4.3.4

1、项目环境搭建

使用阿里脚手架快速创建一个SpringBoot项目:链接:https://start.aliyun.com/bootstrap.html

首先,需要知道scala文件经过编译后也是会生成.class文件的,在maven配置文件里也需要加上一些配置maven-scala-plugin,保证scala程序正常编译,配置文件相对比较复杂,读者可以参考

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.example</groupId>
  6. <artifactId>springboot-scala</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>springboot-scala</name>
  9. <description>Demo project for Spring Boot</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.2.1.RELEASE</spring-boot.version>
  15. <mybatis.plus.version>3.4.3.4</mybatis.plus.version>
  16. <dynamic.datasource.version>3.4.1</dynamic.datasource.version>
  17. <mysql.connector.version>5.1.27</mysql.connector.version>
  18. <hutool.all.version>5.7.11</hutool.all.version>
  19. <scala.version>2.11.12</scala.version>
  20. <scala.compat.version>2.11</scala.compat.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-validation</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>mybatis-plus-boot-starter</artifactId>
  34. <version>${mybatis.plus.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.baomidou</groupId>
  38. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  39. <version>${dynamic.datasource.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.baomidou</groupId>
  43. <artifactId>mybatis-plus-boot-starter-test</artifactId>
  44. <version>${mybatis.plus.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>mysql</groupId>
  48. <artifactId>mysql-connector-java</artifactId>
  49. <version>${mysql.connector.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.hutool</groupId>
  53. <artifactId>hutool-all</artifactId>
  54. <version>${hutool.all.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <scope>test</scope>
  65. <exclusions>
  66. <exclusion>
  67. <groupId>org.junit.vintage</groupId>
  68. <artifactId>junit-vintage-engine</artifactId>
  69. </exclusion>
  70. </exclusions>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.scala-lang</groupId>
  74. <artifactId>scala-library</artifactId>
  75. <version>${scala.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.scala-lang</groupId>
  79. <artifactId>scala-compiler</artifactId>
  80. <version>${scala.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.typesafe.scala-logging</groupId>
  84. <artifactId>scala-logging-slf4j_2.11</artifactId>
  85. <version>2.1.2</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.specs2</groupId>
  89. <artifactId>specs2-core_${scala.compat.version}</artifactId>
  90. <version>2.4.16</version>
  91. <scope>test</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.scalatest</groupId>
  95. <artifactId>scalatest_${scala.compat.version}</artifactId>
  96. <version>2.2.4</version>
  97. <scope>test</scope>
  98. </dependency>
  99. </dependencies>
  100. <dependencyManagement>
  101. <dependencies>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-dependencies</artifactId>
  105. <version>${spring-boot.version}</version>
  106. <type>pom</type>
  107. <scope>import</scope>
  108. </dependency>
  109. </dependencies>
  110. </dependencyManagement>
  111. <build>
  112. <sourceDirectory>src/main/scala</sourceDirectory>
  113. <testSourceDirectory>src/test/scala</testSourceDirectory>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.scala-tools</groupId>
  117. <artifactId>maven-scala-plugin</artifactId>
  118. <executions>
  119. <execution>
  120. <goals>
  121. <goal>compile</goal>
  122. <goal>testCompile</goal>
  123. </goals>
  124. </execution>
  125. </executions>
  126. <configuration>
  127. <recompileMode>incremental</recompileMode>
  128. <scalaVersion>${scala.version}</scalaVersion>
  129. <launchers>
  130. <launcher>
  131. <id>app</id>
  132. <mainClass>com.example.scala.ScalaExamplApplication</mainClass>
  133. <args>
  134. <arg>-deprecation</arg>
  135. </args>
  136. <jvmArgs>
  137. <jvmArg>-Xms64m</jvmArg>
  138. <jvmArg>-Xmx1024m</jvmArg>
  139. </jvmArgs>
  140. </launcher>
  141. </launchers>
  142. </configuration>
  143. </plugin>
  144. <plugin>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-maven-plugin</artifactId>
  147. <version>2.2.1.RELEASE</version>
  148. <configuration>
  149. <mainClass>com.example.scala.ScalaExamplApplication</mainClass>
  150. </configuration>
  151. <executions>
  152. <execution>
  153. <id>repackage</id>
  154. <goals>
  155. <goal>repackage</goal>
  156. </goals>
  157. </execution>
  158. </executions>
  159. </plugin>
  160. <plugin>
  161. <groupId>org.apache.maven.plugins</groupId>
  162. <artifactId>maven-compiler-plugin</artifactId>
  163. <version>3.8.1</version>
  164. <configuration>
  165. <source>1.8</source>
  166. <target>1.8</target>
  167. <encoding>UTF-8</encoding>
  168. </configuration>
  169. </plugin>
  170. </plugins>
  171. </build>
  172. <reporting>
  173. <plugins>
  174. <plugin>
  175. <groupId>org.scala-tools</groupId>
  176. <artifactId>maven-scala-plugin</artifactId>
  177. <configuration>
  178. <scalaVersion>${scala.version}</scalaVersion>
  179. </configuration>
  180. </plugin>
  181. </plugins>
  182. </reporting>
  183. <repositories>
  184. <repository>
  185. <id>scala-tools.org</id>
  186. <name>Scala-Tools Maven2 Repository</name>
  187. <url>http://scala-tools.org/repo-releases</url>
  188. </repository>
  189. </repositories>
  190. <pluginRepositories>
  191. <pluginRepository>
  192. <id>scala-tools.org</id>
  193. <name>Scala-Tools Maven2 Repository</name>
  194. <url>http://scala-tools.org/repo-releases</url>
  195. </pluginRepository>
  196. </pluginRepositories>
  197. </project>

加上配置,主要配置数据源和mybatis plus

  1. spring:
  2. datasource:
  3. dynamic:
  4. primary: shop #设置默认的数据源或者数据源组,默认值即为master
  5. strict: false #严格匹配数据源,默认false. true未匹配到指定数据源时抛异常,false使用默认数据源
  6. datasource:
  7. shop:
  8. url: jdbc:mysql://127.0.0.1:3306/shop?useUnicode=true&characterEncoding=utf-8
  9. username: root
  10. password:
  11. driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
  12. schema: classpath:db/schema-mysql.sql
  13. data: classpath:db/data-mysql.sql
  14. slave_1:
  15. url: jdbc:mysql://127.0.0.1:3306/canaltest?useUnicode=true&characterEncoding=utf-8
  16. username: root
  17. password:
  18. driver-class-name: com.mysql.jdbc.Driver
  19. mybatis-plus:
  20. type-aliases-package: com.example.scala.*.*.model
  21. mapper-locations: classpath*:mapper/*/*.xml
  22. configuration:
  23. map-underscore-to-camel-case: true
  24. default-statement-timeout: 60
  25. cache-enabled: true
  26. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

Scala的Application类,也是调用SpringBoot的SpringApplication

  1. package com.example.scala
  2. import org.springframework.boot.SpringApplication
  3. object ScalaExamplApplication extends App {
  4. SpringApplication.run(classOf[AppConfiguration]);
  5. }

引入@SpringBootApplication

  1. package com.example.scala
  2. import org.springframework.boot.autoconfigure.SpringBootApplication
  3. @SpringBootApplication
  4. class AppConfiguration

实体类,使用了MyBatis Plus的一些注解,可以直接使用,要保证实体类正常转json数据返回给前端,加上@BeanProperty注解

  1. package com.example.scala.model
  2. import com.baomidou.mybatisplus.annotation.{TableId, TableName}
  3. import javax.validation.constraints.{Email, NotBlank, NotEmpty}
  4. import lombok.{Data, ToString}
  5. import scala.beans.BeanProperty
  6. @Data
  7. @TableName(value = "user")
  8. @ToString
  9. class User {
  10. @TableId
  11. @BeanProperty
  12. var id : Integer = _
  13. @BeanProperty
  14. @NotBlank(message = "用户名必须填!")
  15. var name : String = _
  16. @BeanProperty
  17. var age : Integer = _
  18. @BeanProperty
  19. @Email(message = "邮箱格式不对")
  20. var email : String = _
  21. }

scala的接口要用trait标记

  1. package com.example.scala.dao
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper
  3. import com.example.scala.model.User
  4. import org.apache.ibatis.annotations.Mapper
  5. @Mapper
  6. trait UserDao extends BaseMapper[User]{
  7. }

业务api:

  1. package com.example.scala.service
  2. import com.baomidou.mybatisplus.extension.service.IService
  3. import com.example.scala.model.User
  4. trait IUserService extends IService[User]{
  5. }

继承接口scala里用with关键字

  1. package com.example.scala.service.impl
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
  3. import com.example.scala.dao.UserDao
  4. import com.example.scala.model.User
  5. import com.example.scala.service.IUserService
  6. import org.springframework.stereotype.Service
  7. @Service
  8. class UserServiceImpl extends ServiceImpl[UserDao , User] with IUserService{
  9. }

语法和java写法不太一样,声明方法用def@Autowired和返回参数,语法的可以对比一下即可

  1. package com.example.scala.controller
  2. import com.example.scala.model.User
  3. import com.example.scala.service.IUserService
  4. import javax.validation.Valid
  5. import org.springframework.beans.factory.annotation.Autowired
  6. import org.springframework.web.bind.annotation._
  7. @RestController
  8. class UserController @Autowired()(var iUserSerive: IUserService){
  9. @GetMapping(value = {
  10. Array("/users/{id}")
  11. })
  12. def getUser(@PathVariable(value = "id") id: Integer): User = {
  13. iUserSerive.getById(id)
  14. }
  15. @PostMapping(value = {
  16. Array("/users")
  17. })
  18. def save(@Valid @RequestBody user: User) = {
  19. iUserSerive.save(user);
  20. }
  21. }

接口写好之后,同样配个application运行实例即可,在linux里使用curl http://127.0.0.1:8080/users/1调用接口,window系统直接使用postman调用测试接口即可

相关文章