Skip to content

Instantly share code, notes, and snippets.

@darbyluv2code
Created April 6, 2018 15:11
Show Gist options
  • Select an option

  • Save darbyluv2code/d3f58cc033670bb25dab2379f5868956 to your computer and use it in GitHub Desktop.

Select an option

Save darbyluv2code/d3f58cc033670bb25dab2379f5868956 to your computer and use it in GitHub Desktop.
XML entity replacement
Replace
<property name="jdbcUrl" value="jdbc:mysql://localhost:3306/web_customer_tracker?zeroDateTimeBehavior=convertToNull&useSSL=false"
With
<property name="jdbcUrl" value="jdbc:mysql://localhost:3306/web_customer_tracker?zeroDateTimeBehavior=convertToNull&amp;useSSL=false"
Note the use of &amp; as a replacement for &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment