Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jmnarloch/arquillian-container-spring-showcase

Showcase for Arquillian Spring Container
https://github.com/jmnarloch/arquillian-container-spring-showcase

Last synced: 4 days ago
JSON representation

Showcase for Arquillian Spring Container

Awesome Lists containing this project

README

        

#Showcase for Arquillian Spring Container

All the examples has been tested with JBoss 7.1.1 in managed and remote configuration.

## Beans injection

An example of simple bean injection into the test case.

## JSR-330 support

Injecting Spring beans through JSR-330 annotations in the test case.

## Java-based config

Configuring the Spring context using Java-based config.

## JDBC tests

Simple JDBC tests.

## JPA

Example of running tests of JPA persistence.

## Hibernate

Example of testing hibernate persistence.

## JMS

Example of sending JMS messages using Spring's JmsTemplate

Note: in other to successfully run this example in remote JBoss AS 7.1.1 please start the server using fallowing command:

```
./standalone.sh --server-config=standalone-full.xml
```

## EJB - lookup and injection

Example of lookuping stateless session bean (SLSB) and autowiring it in test case.

## TestNG example

Example of running the tests using the TestNG.