I am migrating from Seam 3 to DeltaSpike on WildFly 8 (Java EE 7). What is the equivalent DeltaSpike file to Seam's seam-beans.xml? Could you tell me any more info?
Edit:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:j="urn:java:ee" xmlns:s="urn:java:seam:core" xmlns:c="urn:java:xxx.xxxxxxxxx.core.model">
<c:Configuration>
<j:modifies />
<c:tradingEnabled>false</c:tradingEnabled>
<c:defaultCurrency>USD</c:defaultCurrency>
<c:defaultPeriodLength>300000</c:defaultPeriodLength>
<c:updateTime>5</c:updateTime>
</c:Configuration>
....
This what I did with seam-beans.xml, which did not work for me in beans.xml (values are not injected).
Thanks