Hi all,
When deploying a simple bundle declaring a Spring Data JPA repository :
<jpa:repositories base-package="com.my.repositories"
entity-manager-factory-ref="entityManagerFactory"...
Type: Posts; User: ctranxuan; Keyword(s):
Hi all,
When deploying a simple bundle declaring a Spring Data JPA repository :
<jpa:repositories base-package="com.my.repositories"
entity-manager-factory-ref="entityManagerFactory"...
Hi,
I've got the same issue with Spring 3.0.2.RELEASE with the error message:
Caused by: org.codehaus.mojo.aspectj.CompilationFailedException: Compiler errors:
error at (no source...
@Ben
It sounds good for me too. I'll try it.
Thanks.
@Ben
I would expect the template.mf overrides the maven plugin properties. Otherwise, if you need to override the default properties set by the maven plugin (for instance, the version or the...
Thanks Stefan!
I was wondering why there were no validation exception raised on the server side and thus, whether such field was initialized to null or an empty string.
I will use the workaround...
Thanks Sid and Stefan!
In my case, I would prefer modifying the jspx since the method toString() could be used by other objects.
Hi all,
I have the following code:
entity --class ~.core.License
field string --fieldName name --notNull
field string --fieldName description --notNull --sizeMax 4096
controller scaffold...
Hi all,
I am adding a field "description" with the parameters "--notNull --sizeMax 4096" to an entity "License".
When running the generated web application, I manage to create a License without...
It looks like. I have run maven using bundlor 1.0.0.M6 and the template.mf is well taken in account.
Thanks again for the help!
Cédric.
Thanks! It works fine!
But I still got the issue about the template.mf file that is not taken in account. Have I also missed a maven configuration somewhere?
Hi all,
I am testing Bundlor 1.0.0.RC1 with maven but I don't manage to include my generated MANIFEST.MF in the jar: I just got the default one generated by maven. Nevertheless, it is generated in...
Hi all,
I am just a newbie on Roo and meet an issue when using enum.
With the script below:
persistence setup --provider HIBERNATE --database HYPERSONIC_PERSISTENT
enum type --name...