Hot answers tagged grails
3
version is a keyword in GORM used for optimistic locking. Modify your domain and the criteria as below to make the criteria return appropriate results.
//Domain
class Book {
Integer id
String name
Book bookVersion
}
//Criteria
def book = new Book(name: "test", version: null)
book.id = 1
book.save(flush: true)
def results = ...
3
You need to use single quotes
new BasicDBObject( '$gte', start ).append( '$lt', end ) )
Using double quotes, Groovy tries to expand the gte into a Groovy String, but as it says, you have no variable called gte
Indeed, you should be able to convert you code to the more groovy:
def temp = getDB().sysLog.find( [ lastDate:[ '$gte': start, '$lt': end ] ] as ...
3
The default LocaleResolver of Grails is SessionLocaleResolver. If you want to always use es_ES you can change this to FixedLocaleResolver.
beans {
localeResolver(FixedLocaleResolver) {
locale = new Locale("es", "ES")
}
}
If you want to restrict to a set of locales, then you will need a filter, and use the ...
3
createLink
remoteLink
remoteFunction
Use anyone from above according to your need. I bet you will also get samples/questions/answers here in SO related to the same requirement if you search.
2
Your second error occurs because you not defined your datasource correctly:
Error while extracting DatabaseMetaData;
nested exception is org.apache.commons.dbcp.SQLNestedException: Cannot create J
DBC driver of class 'com.mysql.jdbc.Driver' for connect URL 'jdbc:h2:prodDb;MVCC
=TRUE'
You're using an h2 jdbc url with the MySQL driver ...
2
You can use jquery to do that. For example, your select is
<select id="mySelect" multiple="multiple">
<option value="1">First</option>
<option value="2">Second</option>
<option value="3">Third</option>
<option value="4">Fourth</option>
</select>
listen for the change event:
...
2
You can use Groovy Maps.
[foo1: bar1, foo2: bar2, .....]
Expandos are useful for creating dynamic objects.
def myExpando = new Expando()
myExpando.name = "Test User"
myExpando.app = "Grails"
myExpando.task = {
"Hello, $name. Have you read the $app docs yet?"
}
println myExpando.task()
myExpando.app = "Groovy"
println myExpando.task()
Output:
...
2
Grails has some powerful built-in GSP tags which come in quite handy here. For example:
<g:each in="${items}" var="i">
<tr>
<td>${i.Id}</td>
<td>${i.Name}</td>
<td>${i.Code}</td>
<td>${i.RunType}</td>
<td><a class="button" href="${createLink(controller: ...
1
properties is part of the datasource bean (of type BasicDataSource). Using DSL makes it easier not to use the accessor methods explicitly to set/get the members.
So I think you have to stick to
development{
dataSource{
......
properties{
.......
}
}
}
1
You can use Grails Command objects to do this work for you. Here's an example in a SO question. Basically you will have a single collection of CommitteeMembers that will be populated in your controller thorugh data binding.
As @Gregg says, in the view you need the fields to have an index.
class MyDomain {
String name
}
class MyDomainCommand {
...
1
I think you need to initiate a new transaction in order to save in mongodb. If you notice, the transaction for CarState will be of MySQL. In order to transact with mongodb from the afterUpdate event there has to be a new mongodb transaction. Try this.
def afterUpdate() {
CarStateLogItem.withTransaction{status ->
def logItemInstance = new ...
1
A simpler apprach is to attach the event in the element using JQuery. Also, javascript already have a function called confirm so I suggest you to change this name:
function confirmClick() {
alert('click!');
}
$(function(){
//attach a click event to the element with id 'pass'.
$('#pass').click(function(){
confirmClick();
});
});
And your field ...
1
You can use defineBeans (refer Testing Spring Beans) while setUp or given since Something has been declared as a bean inside resources.groovy
defineBeans{
mySomething(Something){bean ->
//To take care of the transitive dependencies inside Something
bean.autowire = true
}
}
1
You use a mock implementation of your service if this is faster than creating a new instance and populating the dependencies.
Sometimes you can have a complex service, that depends on other services and the effort of setting up all required structure is high, then you can use Grails mockFor() method and just mock the specific methods that you will use.
...
1
I think the term "plugin" is throwing you. This is not a Grails plugin - it is a jQuery plugin. Totally different. First of all make sure you have jQuery itself installed, active and working.
Your downloaded files will go in the following locations:
.js files in web-app/js
.css files in web-app/css
image files in web-app/images (I'm pretty sure this is ...
1
You might be able to use this:
def result = reservations.collectMany { reservation ->
reservation.instances.collect { instance ->
[ StatusCode: instance.code,
RunType : instance.tags.find { it.key == 'RunType' }?.value,
StartedBy : instance.tags.find { it.key == 'StartedBy' }?.value ]
}
}
Updated after the update to the ...
1
REST console does not have the ability to send binary data in request body. Unfortunately, I cannot access curl right now. But I have few inputs for you, and I am also going to try the same in my personal machine.
How to use curl for file upload? (@source - cURL docs)
4.3 File Upload POST
Back in late 1995 they defined an additional way to post data over ...
1
I've just done something similar. I needed to show some notifications based on the user that had logged in, so I set this in MyEvents.groovy:
events = {
'newNotification_*' browser:true
}
And when I need to send the notification:
event topic:"newNotification_${userId}",data:n
Then in my browser I can listen to those notifications with something ...
1
If you add the following in DataSource.groovy an empty database will be created before the integration tests are run:
environments {
test {
dataSource {
dbCreate = "create"
}
}
}
By default each integration test executes within a transaction that is rolled-back at the end of the test, so unless you're not using this ...
1
I'll look at the JIRA issue you filed, but it looks like a problem with dynamic finders, since HQL works:
Book.executeQuery(
'select count(*) from Book where name=:name',
[name: 'foo'], [cache: true])
as does a criteria query:
def count = Book.createCriteria().count {
eq 'name', 'foo'
cache true
}
1
This works for me:
Note:- I used given to set parameters. Looks like setting as JSON to request also binds to params in controller.
def save() {
request.withFormat {
json {
def colorInstance = new Color(params.colors)
render "${colorInstance.colorName}"
}
html {
...
1
What would you like to achieve exactly? You can try creating a taglib where you read the controller name and the action, and passing some parameters you can display the name of your product for example.
I mean something like this:
<g:breadcrumb title="${product.name}" />
and in your taglib file:
class BreadCrumbTagLib {
def ...
1
I use these settings for console and file based logging. You can remove stdout if you don't want/need console. Just copy all your error classes in the corresponding list.
log4j = {
def loggerPattern = '%d %-5p >> %m%n'
def errorClasses = [] // add more classes if needed
def infoClasses = ['grails.app.controllers.myController'] // add ...
1
Grails docs show you the list of operators in a criteria. In your case you can use gt and pass the current date.
def votes = Vote.createCriteria().list() {
gt('endDate', new Date())
}
1
What I usually do is surround the code with a try / catch block and if the delete fails, do nothing.
Maybe it's not the best approach, but I haven't found still a reason for not doing it this way.
Advertiser.withTransaction {
batch.each { record ->
if (recordsShouldBeDeleted(record))
try{
record.delete()
...
1
Seems that you are using maven with grails. The issue arises because of some old version of concurrentlinkedhashmap is pulled somewhere. Use updated version of it, you may use like below:
<dependency>
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
<artifactId>concurrentlinkedhashmap-lru</artifactId>
...
1
multipart/mixed content-type is meant for a text/plain request with an attachment. Do you have an attachment in the request? If you do not send an attachment to the request then it will complain about multipart boundary.
Try to add an attachment (say a dummy file to the request in REST Console), you should see it working.
This content-type is mainly used ...
1
Parse the time into a date object, then convert it back to a string in the format you want. For example:
def start_date = '10:00:00'
assert Date.parse('HH:mm:ss', start_date).format('hh:mm aa') == '10:00 AM'
start_date = '23:59:59'
assert Date.parse('HH:mm:ss', start_date).format('hh:mm aa') == '11:59 PM'
The date format strings are the same ones used by ...
1
params are not sent as a query string in POST requests unlike GET. The parameter strings has to be embedded in the request body in case of POST request.
Use content-type: application/x-www-form-urlencoded
and in the request-body use
username=azerty&test=test
You should be able to see the parameters in params inside controller.
You should be able ...
1
You can configure in the Config.groovy to process resources in / like this:
grails.resources.adhoc.patterns = ['/*','/images/*', '/css/*', '/js/*', '/plugins/*']
http://mydomain/favicon.ico
will get a 302 to:
http://mydomain/static/favicon.ico
That should work, but I think its better to move your ico to /images
Only top voted, non community-wiki answers of a minimum length are eligible
