发布时间:2021-04-19 11:50:57
1.写个配置类CorsConfig (如果不行,可以不写此类,和springcloud的版本有关)package net.youqu.micro.service.config; import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.web.cors.CorsConfiguration;import org.........【阅读全文】
发布时间:2021-04-18 12:41:54
配置文件配置连接池spring: datasource: username: root password: 5201314 url: jdbc:mysql:///jqmb?serverTimezone=UTC driver-class-name: com.mysql.cj.jdbc.Drive.........【阅读全文】
发布时间:2021-04-15 11:59:39
方式五为最终版本@Testpublic void testConnection() throws SQLException {//1.获取Driver的实现类对象Driver driver =new com.mysql.jdbc.Driver();//url://jdbc:mysql:协议//localhost:ip地址//3306 默认mysql端口号//test:test.........【阅读全文】