probably my bad English doesn't help 
Looking around, i read that SWC keep METADATA.
in SAS 1.1 a list of metatags to keep is defined in pom.xml.
i found this
Code:
<keepAs3Metadatas>
<param>Autowired</param>
<param>Inject</param>
<param>Command</param>
<param>Component</param>
<param>Constructor</param>
<param>Event</param>
<param>EventHandler</param>
<param>Property</param>
<param>Invoke</param>
<param>PostConstruct</param>
<param>PreDestroy</param>
<param>Required</param>
<param>RouteEvents</param>
<param>RouteMVCEvents</param>
</keepAs3Metadatas>
so these metatags are included. In fact I delete compiler arguments "-keep-as3-metadata" and the MVC example works fine.
At the moment, my troubles is listen to dispatched event with SAS 1.2
I built spring-actionscript-core-1.2-SNAPSHOT.swc with Maven plugin in Intellij IDEA
metadata [RouteMVCEvents] is registered
Code:
18:27:29.301 DEBUG - MetadataProcessorObjectPostProcessor - Registered metadata '[RouteMVCEvents]' with processor '[object MVCRouteEventsMetaDataProcessor]'
Singleton StartupCommand is registered for event
Code:
18:27:29.355 DEBUG - Controller - command startupCommand registered for event type startupEvent with execute method execute and priority 0
metadata [Event] found for event
Code:
18:27:29.605 DEBUG - MVCRouteEventsMetaDataProcessor - Found [Event] metadata for event startupEvent
18:27:29.611 DEBUG - MVCRouteEventsMetaDataProcessor - added listener for event type 'startupEvent' on [object Main]
event is dispatched
Code:
18:31:53.865 DEBUG - EventBus - Notified eventbus listener [object AS3CommonsEventBusListener] of event [MVCEvent(document=[null], event=[Event type="startupEvent" bubbles=false cancelable=false eventPhase=2], bubbles=false, cancelable=false)] for topic null
18:31:53.865 DEBUG - EventBus - Notified eventbus listener [object EventBusAdapter] of event [MVCEvent(document=[null], event=[Event type="startupEvent" bubbles=false cancelable=false eventPhase=2], bubbles=false, cancelable=false)]
but trace in StartupCommand execute method is not shown...