Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jmnarloch/arquillian-container-spring-showcase
- Owner: jmnarloch
- Created: 2012-04-05T05:53:15.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-05-21T16:39:26.000Z (over 12 years ago)
- Last Synced: 2023-03-23T02:33:12.760Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 169 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.