in JPA annotation @Table(x+"_Name"), I want the x to be fed by spring config file. Is it possible in JPA? actually all our db tables name have prefix with application name, and I want to use that prefix at dynamically configure by passing to spring bean config.
in spring config:
<bean id="x" class="java.lang.String">
<constructor-arg value="JOE" />
</bean>