maven+springboot+mybatis快速搭建簡單使用
阿新 • • 發佈:2020-07-19
傳送門https://www.cnblogs.com/ljsh/p/10928106.html
總結
maven的依賴
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.7.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <dependencies> <!-- 資料庫連線池 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.0.25</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.16</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.0.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies>
會簡單使用到的註解
@SpringBootApplication
@Service
@Autowired
@Mapper
@Controller
@RequestMapping
專案扔到github上https://github.com/shenshaonian/loveMoocLearn
下一步,加個插曲,明天把對dao層的本地單元測試弄出來。
然後在做,額看公司程式碼,趕緊學習,希望試用期可以通過,好難,以後沒機會混日子了。
通過阿里伺服器,用appolo配置,springboot管理資料連線,快速簡單實現後端系統。