Destan Sarpkaya

Results 14 comments of Destan Sarpkaya

I believe this is an application problem and solved in SO https://stackoverflow.com/questions/54961520/thymeleaf-occasional-error-using-session-exception-evaluating-springel-expre hence we can close this issue.

spring dependencies are only required for tests, there is no hard spring dependency for the `query-validator` itself. Normally spring dependencies should be test scoped `build.gradle` dependency entries however due to...

> you could just add an annotation with the same name as the Spring @Query annotation to the test module I didn't think of that in the first place, let...

> //Overriding this class will allow micronaut-data transactions to handle multitenant > **io.micronaut.transaction.interceptor.TransactionalInterceptor** @tcardoso you suggested _overriding_ `TransactionalInterceptor` but how it's possible? I've tried with `@Replaces` annotation ```kotlin @Prototype @Replaces(TransactionalConnectionInterceptor::class)...

hi @tcardoso, thanks for previous answer, it was helpful. Just one more question which I think still related with this issue: Why didn't you prefer Hibernate's `AbstractDataSourceBasedMultiTenantConnectionProviderImpl` which makes selecting...

> Using th:remove="tag" would add html elements which aren't necessary How is that? it just removes the "unnecessary" tag but keeps its children which is the text itself in this...

@dtrunk90 oh I see, I only thought of rendered HTML.

afaik 'gzip'ing the response is upto the server container or application server. so I don't think it's Thymeleaf's responsibility. however I agree that Thymeleaf had better provide a way to...

@tqad 's sample projects works indeed. I'd like to share our solution which is a slightly modified version of the sample project's `AbstractDataSourceBasedMultiTenantConnectionProviderImpl` implementation. Our version supports dynamic tenants by...

hi, thank you for your interest. I haven't found any time to look into PRs and comments. If you're interested I can make you and anyone who's interested a collaborator...