1

mysql 5.6.24 database is hosted in jelastic for java program which jar file i need to import.i have imported mysql-connector-java-5.1.18-bin is this a correct jar file.

Please suggest me..

this is the error it is showing..

Aug 19, 2015 9:09:56 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:FetchingRecord' did not find a matching property.    
Aug 19, 2015 9:09:56 AM org.apache.catalina.startup.VersionLoggerListener  
log  
INFO: Server version:        Apache Tomcat/7.0.62  
Aug 19, 2015 9:09:56 AM org.apache.catalina.startup.VersionLoggerListener  
log      
INFO: Server built:          May 7 2015 17:14:55 UTC
Aug 19, 2015 9:09:56 AM org.apache.catalina.startup.VersionLoggerListener  
log  

Thanks..

Bhavin Bhadani
  • 22,224
  • 10
  • 78
  • 108
Ankur Alankar Biswal
  • 1,184
  • 1
  • 12
  • 23

1 Answers1

2

Mysql Connector/J version 5.1 supports MySQL Server versions 4.1, 5.0, 5.1, 5.5, 5.6, 5.7

So it should be fine.

Table listing Summary of Connector/J Versions

Connector/J version     JDBC version        MySQL Server version                Status
5.1                     3.0, 4.0            4.1, 5.0, 5.1, 5.5, 5.6, 5.7    Recommended version
5.0                     3.0                 4.1, 5.0                        Released version
3.1                     3.0                 4.1, 5.0                        Obsolete
3.0                     3.0                 3.x, 4.1                        Obsolete

More information can be obtained from the mysql documentation page

http://dev.mysql.com/doc/connector-j/en/connector-j-versions.html

if you are worried about the line

WARNING: Setting property 'source' to org.eclipse.jst.jee.server:FetchingRecord' did not find a matching property.

Then this is a warning. Most probably it would not cause an issue.

Most common solution suggested for errors of the format

Setting property 'source' to 'org.eclipse.jst.jee.server:xxx' did not find a matching property.

is below

  • Open your tomcat server.
  • In the "Server Options" part, check "Publish module contexts to separate XML files.
  • Restart.

The below links in SO has many answers for similar errors which could help you.

Setting property 'source' to 'org.eclipse.jst.jee.server:JSFTut' did not find a matching property

WARNING: Setting property 'source' to 'org.eclipse.jst.jee.server:appname' did not find a matching property

Setting property 'source' to 'org.eclipse.jst.jee.server:GestorContenidoWS' did not find a matching property. Try all the solutions

Community
  • 1
  • 1
Raj
  • 1,945
  • 20
  • 40