ajax
ajax

Reputation: 317

How does @Deployment work in an Arquillian test?

How does (JBoss) Shrinkwrap perform the deployment of a war file in the container when I use the @Deployment annotation in an Arquillian test?

Upvotes: 0

Views: 293

Answers (2)

bartosz.majsak
bartosz.majsak

Reputation: 1064

As John said, it really depends on how container adapter is implemented (in particular the deployment automation bits). I case of WebSphere container adapter it's using SOAP admin client available from WAS, Glassfish stuff works through their REST api and so on.

Upvotes: 2

John Ament
John Ament

Reputation: 11733

This depends on your container, not all containers will do it the same way.

Upvotes: 1

Related Questions