Just to mention - I've tried adding my-app-business to BuildConfig.groovy, but it requires me to execute maven build of my-app-business and THEN refreshing dependencies every time I want to see...
Type: Posts; User: wciesiel; Keyword(s):
Just to mention - I've tried adding my-app-business to BuildConfig.groovy, but it requires me to execute maven build of my-app-business and THEN refreshing dependencies every time I want to see...
Hi there,
I am struggling for couple of hours now trying to set-up a maven-compatible multi-module project using grails... Basically what I have is:
1. one "business" module, developed prior to...
It seems I am suffering for the same reason... Is there any better way to resolve this apart from reinstalling the whole STS (or manual installation of a tcServer) ?
Hi,
We're using annotation-based transaction configuration on our service beans, defined in pretty standard way:
<tx:annotation-driven transaction-manager="our-transactionManager"...
Hi there,
Is there a way to integrate application security to get SSO functionality with authentication/authorization done via Active Directory, but with controller address being dynamically...
My goal is to be able to pass custom annotation's attribute's to annotations of that custom annotation...
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Repository([a way to...
Did I made that post that unreadable or does nobody know the answer?
Hi,
Is there a way to parametrize annotations passed to a bean via a stereotype? I've made a steretype like this:
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Repository...
Thanks mate, you've solved my problem. Merry Xmas ;-)
Hi all,
I am trying to set up a project using stack mentioned in the title:
* Spring 2.5
* Hibernate 3.4
* JUnit 4.4
And I just can't get it working in terms of transactional support...
Hi there,
I have a web application (Tapestry / Spring / Hibernate) with "sesion in view" pattern implemented. My question is: is actual DB connection locked by a request thread for entire time of...
Hi there,
My app looks like this:
Business layer is a spring/hibernate-based application with SLSB EJB working as session facade to some POJO hibernate-based persistance layer. It's deployed as...
and adding this to web.xml
<filter>
<filter-name>CharacterEncodingFilter</filter-name>
<filter-class>com.top7.web.util.CharacterEncodingFilter</filter-class>
<init-param>
...
if someone had such problem - the solution was to set character encoding to UTF using filter like this:
public class CharacterEncodingFilter implements Filter {
//...
Hi there,
I have web application with spring-hibernate-based business logic tier (MySQL database). And I can't get character encoding rigth... Could somebody tell me what are the main issues I...
Hi there,
I've got SLSB session facade using Spring/Hibernate POJOs as persistance layer. On the service methods I can set EJB transaction type. Is this propagated somehow onto operations further...
Hi there,
I am building 3-tier application with hibernate persistance layer, SLSB service facade on JBoss and thin Swing-based standalone client application. All of this with spring framework and...
Hi there,
I am using spring framework from within application generated with AndroMDA. Recently they've applied patch to use the JtaTransactionManager from spring as the default instead of the...