1

I am new to wildfly8.1 sever. In my application ear, I have a dependency to interfaces.jar, so how can i add in wildfly server?

Alexander Rühl
  • 6,769
  • 9
  • 53
  • 96
Shankar S
  • 133
  • 1
  • 5
  • 15

2 Answers2

1

The lib/ext doesn't work anymore in JB8 (wildfly). You need to create - wtf - a module now! Look at the docs in https://docs.jboss.org/author/display/WFLY8/Class+Loading+in+WildFly

Rainer
  • 11
  • 1
0

Put it in folder wildfly/8.1.0.Final/standalone/lib/ext

  • thanks for your reply, Hi i placed my interfaces.jar into D:\Servers\wildfly-8.1.0.Final\standalone\lib\ext . But the i getting class not found error Caused by: java.lang.NoClassDefFoundError: com/nexge/ruleengine/dataservices/BillingDO – Shankar S Aug 28 '14 at 12:14
  • then you need to add it's further dependencies. – Sachin Verma Aug 29 '17 at 12:20