2

I get this while starting my project with jrebel

'-noverify' missing, changing/adding/removing constructors will not be enabled!

i'm using apache tomcat, spring mvc, spring-data-jpa and querydsl

so how can i be able to change constructors with jrebel ?

Hayi
  • 6,972
  • 26
  • 80
  • 139

2 Answers2

2

You're probably running on Java 1.8u11 or 1.7u65. Try updating to JDK 1.8u25 or 1.7u72.

In 1.8u11 verifier rules were changed and it affected quite a few tools and libraries that excel in bytecode manipulation. Here's the issue description.

Anton Arhipov
  • 6,479
  • 1
  • 35
  • 43
0

I'm using eclipse and I add -Xverify:none in :
run as -> run configuration -> apache tomcat and in the onglet arguments -> JVM arguments

Hayi
  • 6,972
  • 26
  • 80
  • 139