The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
20 views

multiple local session factory configurations by profile

I have Spring profile aware beans that I want to use to set a datasource, without configuring multiple and identical Session factory configurations save the hibernate.dialect property. For example ...
0
votes
1answer
49 views

Seeting Spring Profile variable

I am using Spring profiles. I am gonna use two profiles namely dev and test. Now I wanna setup this two profiles in the server environment. I dont want my code to setup the active profile. I want the ...
1
vote
2answers
149 views

Using javax.persistence.Table @Table annotation in roo project, how can I use maven (or spring) to set the schema from a build profile?

Pretty much what it says in the title. I would like to have maven (or roo) manage which schema the @Table annotation uses at build time. I tried @Table(schema = ${env.schema},name = "MYTABLE") ...
0
votes
0answers
30 views

spring profile groups

I have an application, for which I can specify the profiles I want to run it on. but I also want to group these profiles into things like credentails, application performance, memory-print, ...
0
votes
1answer
60 views

Do new spring namespaces work with profiles “beans” tag?

I plan to use "jdbc:" namespace in conjunction with spring profiles: <beans profile="prod"> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> ... ...
0
votes
1answer
59 views

Can PropertiesPlaceholderConfigurer subclass detect active Spring profile?

We have a specific format for our config files, where instead of having multiple files - ie, dev.properties, uat.properties, prod.properties - we instead have all the values in one file, but separated ...