Skip to content

Commit

Permalink
Showcase for Spring Extension Alpha 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmnarloch authored and aslakknutsen committed May 21, 2012
1 parent f4c1bdb commit f5056e8
Show file tree
Hide file tree
Showing 122 changed files with 10,041 additions and 0 deletions.
1 change: 1 addition & 0 deletions pom.xml
Expand Up @@ -40,6 +40,7 @@
<module>ui</module>
<module>multinode</module>
<module>extensions</module>
<<module>spring</module>
</modules>
</profile>
<profile>
Expand Down
45 changes: 45 additions & 0 deletions spring/README.md
@@ -0,0 +1,45 @@
#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.

0 comments on commit f5056e8

Please sign in to comment.