I am using wildfly and I have weird problem. Firstly i had class in package:
1) app.service.parkingMeter.ParkingMeterService
Everything works fine, deploy is ok.
Then i renamed this package to:
2) app.service.parkingmeter.ParkingMeterService
And i got
WELD-001474: Class app.service.ticket.TicketService is on the classpath, but was ignored because a class it references was not found: app.service.parkingmeter.ParkingMeterService
When i came back to name (1) everything start working again back to (2) same error again. When i moved my class to package:
3) app.service.test.ParkingMeterService
No error occurred.
What is the source of this problem and how can i fixed it