Details
-
Wish
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
5.0.6
-
None
Description
I had some trobubles with @Symbol annotation ...
and ran into following code in TapestryModule
@Inject @Value("WEB-INF/${tapestry.app-name}.properties") String appCatalog
I changed it to
@Inject @Value("WEB-INF/${"InternalConstants.TAPESTRY_APP_NAME_SYMBOL"}.properties") String appCatalog
and then into
@Inject @Symbol(InternalConstants.TAPESTRY_APP_NAME_SYMBOL) String appName
....
String appCatalog = "WEB-INF/"appName".properties";
not that this is a big deal or anything, just a small fix...