SpringBoot的启动项程序和Application.properties核心配置文件的编写
程序员文章站
2022-05-01 23:28:14
...
1.首先导入SpringBoot的坐标和Spring Data Jpa 的坐标。百度一下多滴很
2.SpringBoot的核心配置文件Application.properties
#DB Configuration 数据源的配置
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/user?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone = GMT
spring.datasource.username=root
spring.datasource.password=root
#JPA Configuration JPA的配置
spring.jpa.database=MySQL
#将show-sql改成true,log才会输出sql语句,便于调试。打印sql语句
spring.jpa.show-sql=true
#generate-ddl: false表示sping启动的时候不自动生成增删改查接口(因为##我们自己会写增删改查接口)。
spring.jpa.generate-ddl=true
3.SpringBoot的启动程序
* 启动程序
*/
@SpringBootApplication
public class CrawlerApplication {
public static void main(String[] args) {
//注意上面引入的注解是@SpringBootApplication 启动程序是SpringApplication.run(类加载器)
SpringApplication.run(CrawlerApplication.class,args);
System.out.println("(♥◠‿◠)ノ゙ 天海爬虫启动成功 ლ(´ڡ`ლ)゙" +
" ____ ____ ___ ___ _____ ____ \n" +
" / ___| _ \\ / \\ \\ / / | | ____| _ \\ \n" +
"| | | |_) | / _ \\ \\ /\\ / /| | | _| | |_) |\n" +
"| |___| _ < / ___ \\ V V / | |___| |___| _ < \n" +
" \\____|_| \\_\\/_/ \\_\\_/\\_/ |_____|_____|_| \\_\\\n" +
" "
);
}
}```
推荐一个文字字符生成器:https://tools.kalvinbg.cn/txt/ascii
// _ooOoo_ //
// o8888888o //
// 88" . "88 //
// (| ^_^ |) //
// O\ = /O //
// ____/`---'\____ //
// .' \\| |// `. //
// / \\||| : |||// \ //
// / _||||| -:- |||||- \ //
// | | \\\ - /// | | //
// | \_| ''\---/'' | | //
// \ .-\__ `-` ___/-. / //
// ___`. .' /--.--\ `. . ___ //
// ."" '< `.___\_<|>_/___.' >'"". //
// | | : `- \`.;`\ _ /`;.`/ - ` : | | //
// \ \ `-. \_ __\ /__ _/ .-` / / //
// ========`-.____`-.___\_____/___.-`____.-'======== //
// `=---=' //
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ //
// 佛祖保佑 永不宕机 永无BUG //