Advertisement
Guest User

Untitled

a guest
Sep 16th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.25 KB | None | 0 0
  1. ```
  2.  
  3.  
  4.  
  5. [INFO] Scanning for projects...
  6. [INFO]
  7. [INFO] ------------------------------------------------------------------------
  8. [INFO] Building bi-jdbc 1
  9. [INFO] ------------------------------------------------------------------------
  10. [INFO]
  11. [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ bi-jdbc ---
  12. [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
  13. [INFO] skip non existing resourceDirectory /Users/bedrich/Desktop/x/sqlproxy/bi-jdbc/src/main/resources
  14. [INFO]
  15. [INFO] --- maven-compiler-plugin:3.2:compile (default-compile) @ bi-jdbc ---
  16. [INFO] Nothing to compile - all classes are up to date
  17. [INFO]
  18. [INFO] --- exec-maven-plugin:1.5.0:java (default-cli) @ bi-jdbc ---
  19. jdbc:mysql://127.0.0.1:3307/fullblackbox?useSSL=false
  20. hello
  21. hello
  22. select * from xy
  23. Fri Sep 16 10:44:23 EDT 2016 WARN: Invalid value 'null' for server variable named 'auto_increment_increment', falling back to sane default of '1'.
  24. Fri Sep 16 10:44:23 EDT 2016 WARN: Invalid value 'null' for server variable named 'max_allowed_packet', falling back to sane default of '-1'.
  25. java.sql.SQLException: Unexpected exception encountered during query.
  26. at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:695)
  27. at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:663)
  28. at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:653)
  29. at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:638)
  30. at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:606)
  31. at com.mysql.cj.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2072)
  32. at com.mysql.cj.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:1994)
  33. at com.mysql.cj.jdbc.StatementImpl.executeQuery(StatementImpl.java:1429)
  34. at BITest.main(BITest.java:46)
  35. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  36. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  37. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  38. at java.lang.reflect.Method.invoke(Method.java:483)
  39. at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:294)
  40. at java.lang.Thread.run(Thread.java:745)
  41. Caused by: java.lang.NullPointerException
  42. at java.util.Calendar$Builder.setTimeZone(Calendar.java:1313)
  43. at sun.util.locale.provider.CalendarProviderImpl.getInstance(CalendarProviderImpl.java:86)
  44. at java.util.Calendar.createCalendar(Calendar.java:1666)
  45. at java.util.Calendar.getInstance(Calendar.java:1655)
  46. at com.mysql.cj.jdbc.io.JdbcDateValueFactory.<init>(JdbcDateValueFactory.java:48)
  47. at com.mysql.cj.jdbc.io.JdbcDateValueFactory.<init>(JdbcDateValueFactory.java:54)
  48. at com.mysql.cj.jdbc.result.ResultSetImpl.<init>(ResultSetImpl.java:308)
  49. at com.mysql.cj.jdbc.result.ResultSetImpl.getInstance(ResultSetImpl.java:238)
  50. at com.mysql.cj.jdbc.MysqlIO.buildResultSetWithRows(MysqlIO.java:704)
  51. at com.mysql.cj.jdbc.MysqlIO.getResultSet(MysqlIO.java:224)
  52. at com.mysql.cj.jdbc.MysqlIO.readResultsForQueryOrUpdate(MysqlIO.java:687)
  53. at com.mysql.cj.jdbc.MysqlIO.readAllResults(MysqlIO.java:583)
  54. at com.mysql.cj.mysqla.io.MysqlaProtocol.sqlQueryDirect(MysqlaProtocol.java:922)
  55. at com.mysql.cj.mysqla.MysqlaSession.sqlQueryDirect(MysqlaSession.java:452)
  56. at com.mysql.cj.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2032)
  57. ... 9 more
  58. [WARNING] thread Thread[Abandoned connection cleanup thread,5,BITest] was interrupted but is still alive after waiting at least 15000msecs
  59. [WARNING] thread Thread[Abandoned connection cleanup thread,5,BITest] will linger despite being asked to die via interruption
  60. [WARNING] NOTE: 1 thread(s) did not finish despite being asked to via interruption. This is not a problem with exec:java, it is a problem with the running code. Although not serious, it should be remedied.
  61. [WARNING] Couldn't destroy threadgroup org.codehaus.mojo.exec.ExecJavaMojo$IsolatedThreadGroup[name=BITest,maxpri=10]
  62. java.lang.IllegalThreadStateException
  63. at java.lang.ThreadGroup.destroy(ThreadGroup.java:778)
  64. at org.codehaus.mojo.exec.ExecJavaMojo.execute(ExecJavaMojo.java:328)
  65. at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:132)
  66. at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
  67. at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
  68. at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
  69. at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
  70. at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
  71. at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
  72. at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:120)
  73. at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:355)
  74. at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:155)
  75. at org.apache.maven.cli.MavenCli.execute(MavenCli.java:584)
  76. at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:216)
  77. at org.apache.maven.cli.MavenCli.main(MavenCli.java:160)
  78. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  79. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  80. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  81. at java.lang.reflect.Method.invoke(Method.java:483)
  82. at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
  83. at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
  84. at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
  85. at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
  86. [INFO] ------------------------------------------------------------------------
  87. [INFO] BUILD SUCCESS
  88. [INFO] ------------------------------------------------------------------------
  89. [INFO] Total time: 16.357 s
  90. [INFO] Finished at: 2016-09-16T10:44:38-04:00
  91. [INFO] Final Memory: 11M/312M
  92. [INFO] ------------------------------------------------------------------------
  93.  
  94. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement