我是intelliJ的新手,刚刚从eclipse切换了。我有几个问题: 我已经转到项目设置,库并添加了MYSQl连接。同样在模块和依赖项下,我还有mySql连接器。 我已经在eclipse中尝试了以下代码:
String dbUsername = "root";
String dbPassword = "12frimyux09";
String URL = "127.0.0.1";
String port = "3306";
String dbName = "university";
//Connection con;
String SQL;
String dbURL = "jdbc:mysql://" + URL + ":" + port + "/" + dbName + "?verifyServerCertificate=false&useJDBCComplaintTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC";
Properties property = new Properties();
property.setProperty ("user", dbUsername);
property.setProperty("password", dbPassword);
property.setProperty("useSSL", "false");
property.setProperty("autoReconnect", "true");
Class.forName("com.mysql.cj.jdbc.Driver");
Connection con = DriverManager.getConnection (dbURL, property);
可以正常工作,但是不能与intellij一起使用(我将代码放在控制器类中),甚至尝试使用try and catch,仍然没有运气,我得到了以下错误。1 同样在eclipse中,当我使用Integer.parseInt时,我得到了很多建议,但是使用intellij我却得到了错误且没有任何建议,尝试了cntrl space和cntrl p,还去了文件,设置,代码完成并在参数info下设置了所有的滴答,我在做错什么,为什么intellji无法完成我的任务???