当前位置:网站首页>ojdbc8 "Recommended Collection"
ojdbc8 "Recommended Collection"
2022-07-31 18:23:00 【The whole stack programmer webmaster】
Hello everyone, meet again, I'm your friend Quanstack Jun.
The role of spring-boot-starter-parent Introduce spring-boot-start-parent in pom.xml, what spring's official explanation is called stater poms, it can provide dependency management, that is to sayDependency management, after the introduction, no version is required when declaring other dependencies, as you can see later.spring-boot-starter-web function springweb core component spring-boot-maven-plugin function If we want to start spring directly from Main, then the following plugin must be added, otherwise it isUnable to start.This configuration is not required if you use maven's spring-boot:run.(When I was testing, if I did not configure the plugin below, it would also run directly in Main.)
package com.example.demo;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplicationpublic class DemoApplication {public static void main(String[] args) {SpringApplication.run(DemoApplication.class, args);}}4.0.0 org.springframework.boot spring-boot-starter-parent 2.2.7.RELEASE com.example demo 0.0.1-SNAPSHOT demo Demo project for Spring Boot 1.8 org.springframework.boot spring-boot-starter com.oracle.ojdbc ojdbc8 runtime org.springframework.boot spring-boot-starter-test test org.junit.vintage junit-vintage-engine org.springframework.boot spring-boot-maven-plugin Publisher: Full stack programmer, please indicate the source: https://javaforall.cn/127512.htmlOriginal link: https://javaforall.cn
边栏推荐
- 35 MySQL interview questions and diagrams, this is also easy to understand
- All-platform GPU general AI video supplementary frame super-score tutorial
- [Network Communication 3] Advantech Gateway Modbus Service Settings
- flowable工作流所有业务概念
- flyway的快速入门教程
- 学生管理系统第一天:完成登录退出操作逻辑 PyQt5 + MySQL5.8
- MySQL---operator
- GateWay实现负载均衡
- MySQL---基本的select语句
- 全平台GPU通用AI视频补帧超分教程
猜你喜欢
随机推荐
Write a database document management tool based on WPF repeating the wheel (1)
最后写入胜利(丢弃并发写入)
Cache and Database Consistency Solutions
go基础部分学习笔记记录
GateWay实现负载均衡
【NLP】什么是模型的记忆力!
Concurrency, Timing and Relativity
C# 之 扑克游戏 -- 21点规则介绍和代码实现
微信小程序的路由拦截
常用的安全渗透测试工具(渗透测试工具)
学生管理系统第一天:完成登录退出操作逻辑 PyQt5 + MySQL5.8
UserAgent 解析
基于WPF重复造轮子,写一款数据库文档管理工具(一)
多主复制下处理写冲突(3)-收敛至一致的状态及自定义冲突解决逻辑
matplotlib ax bar color Set the color, transparency, label legend of the ax bar
联邦学习:联邦场景下的多源知识图谱嵌入
AcWing 1282. 搜索关键词 题解((AC自动机)Trie+KMP)+bfs)
MySQL - multi-table query
浅谈网络安全之算法安全
无主复制系统(2)-读写quorum









