ionic 2 angular maxlength issue in android devices

In Ionic 2, the maxlength property is working as expected in ios devices and on some android devices. But it doesn't work if the device is using native keyboard. This is the custom directive to make it work in all the devices. In ios, it uses the native maxlength property and in android, it uses custom maxlength property. import { Directive, EventEmitter, HostListener, Input, Output } from '@angular/core'; import { Platform } from "ionic-angular"; @Directive({ selector: '[cMaxLength]' }) export class MaxLengthDirective { @Input('cMaxLength') cMaxLength:any; @Output() ngModelChange:EventEmitter = new EventEmitter(); constructor(public platform: Platform) { } //keypress event doesn't work in ionic android. the keydown event will work but the value doesn't effect until this...

Creating Simple Audit Log using grails, Spring Security Listeners, Hibernate Listeners

Simple Audit Log using Grails and Hibernate event listeners Providing following functionality 1. Loging Insert, Update, Delete of objects 2. Logging Login, Logout events 3. Logging Login Attempt failed event 4. Logging which screen is accessed 1. Create AuditLog domain. class AuditLog { static transient escapeLogAction = true User user AuditLogType auditLogType // To find which type of action it is. like login, logout, screen access etc String value Date timeStamp String IPAddress Date dateCreated Date lastUpdated AuditLogSource source // To find what is the source of request. like web or system. Some times we run the cron jobs to insert the data. in that case it is "System" static constraints = { user (nullable: true) IPAddress...

Forgot Password, Change Password, Reset Password functionality using grails

Forgot Password, Change Password, Reset Password functionality using grails 1. Install grails mail plugin. And configure the mail plugin to email reset password link compile "org.grails.plugins:mail:1.0.7" 2. Create a domain Token.groovy to generate random token to send reset password link to user email MongoPersistanceListener.groovy> import java.util.UUID class Token { String email String value = UUID.randomUUID().toString().replaceAll('-', '') Date dateCreated static mapping = { version false } static constraints = { } } 3. Create a UserService.groovy to send send generate token and send email class UserService { def emailService; void sendResetPasswordEmail(User user){ def token = Token.findByEmail(user.email) if(!token)...

Custom Persistence Listener in Mongodb Grails plugin

Mongodb grails persistance listeners to assign default properties Mongodb doesn't support extending the base class to assign values to common properties like updatedOn, createdOn etc. Hibernate has support to extend the class to a domain and assign the properties. In grails mongodb we can acheive this using Grails persistance listeners. 1. Install mongodb plugin in grails (BuildConfig.groovy). compile "org.grails.plugins:mongodb:5.0.7.RELEASE" 2. Now Create Perstitance Listener by extending AbstractPersistenceEventListener in src/groovy. AbstractPersistenceEventListener will provide onPersistenceEvent and we can capture PreInsert, PreUpdate ... events MongoPersistanceListener.groovy> import org.grails.datastore.mapping.core.Datastore import org.grails.datastore.mapping.engine.event.AbstractPersistenceEvent import...

Hosting grails application in openshift

Hosting a grails application on free hosting provider (openshift) 1. Create account in https://www.openshift.com/ 2. Login to openshift web console 3. click on add application 4. Select Tomcat 7 (JBoss EWS 2.0) from the list of applications 5. Enter public url and select other configuration and create application. Leave blank in git hub url. 6. Go to applications page -> go to the application that you have created -> add mysql to the application. 7. Click on add Cartridge 8. Now...

Loading spinner using jquery spin js and blockui plugin

Loading spinner using jquery spin.js and jquery block ui plug-ins. We can have multiple loaders in same page. Spinner will display inside the element. we need to adjust css settings to align the spinner. we can remove block ui related code in spinner to make the other areas in the page is click-able. 1. Include jquery 2. Include spin js http://fgnass.github.io/spin.js/ 3. Include block ui http://malsup.com/jquery/block/ var APP = APP || {}; APP.UI = (function(){ function showLoader(el) { var opts = { lines: 13, length: 7, width: 4, radius: 10, corners: 1, rotate: 0, color: '#000', speed: 1, trail: 60, shadow: false, hwaccel: false, className: 'spinner', zIndex: 2e9, top: '50%', left: '50%', visibility: true }; ...

Grails Spock Testing Where Block Passing Dynamic Objects

Grails Spock testing passing dynamic objects in where block To fix "Only @Shared and static fields may be accessed from here" issue in spock integration test with where block we need to use @Shared annotation while declaring variables and need to initialize them in setupSpec() method Sample implementation @TestMixin(IntegrationTestMixin) class SpockExampleIntegrationTests extends Specification { @Shared String email1 @Shared String email2 void setup() { email1 = "mannejkumar@gmail.com" email2 = "jk.manne@yahoo.com" } def testGetEmployeeById() { setup: Employee employee when: employee = employeeService.getEmployeeById(employeeId) then: employee.email == result where: sno...

Adding properties to domain classes on the fly using groovy propertyMissing feature

Adding properties to domain classes on the fly using groovy propertyMissing feature Some times we need to add properties to domain classes on the fly. Groovy supports propertyMissing for dealing with property resolution attempts. Steps to added dynamic properties to domain classes. 1. Create Entity.groovy class in src/groovy folder and use groovy propertyMissing feature in Entity class class Entity { def dynamicProperties= [:] //setter def propertyMissing(String name, value) { dynamicProperties= [name] = value } //getter def propertyMissing(String name) { dynamicProperties= [name] } } 2. Now extend Entity class from your domain class User.groovy> class User extends Entity{ String firstName String lastName } Address.groovy class Address extends Entity{ ...

Connection Pool in Java & JDBC

Connection Pooling in JDBC In software engineering, a connection pool is a cache of database connections maintained so that the connections can be reused when future requests to the database are required. Connection pools are used to enhance the performance of executing commands on a database. Opening and maintaining a database connection for each user, especially requests made to a dynamic database-driven website application, is costly and wastes resources. In connection pooling, after a connection is created, it is placed in the pool and it is used over again so that a new connection does not have to be established. If all the connections are being used, a new connection is made and is added to the pool. Connection pooling also cuts down on the amount of time a user must wait to establish...

checking the website is responsive or not using selenium and groovy, grails and java

checking the website is responsive or not using selenium and groovy, grails and java Here i am providing the way to find the given website is responsive or not using selnium and grails. We can acheive this in multiple ways 1. Screenshot comparison : Using selenium webdriver go to the given website url and change the browser to different sizes and compare the screenshots.If both screenshots are same then the given website is not responsive.If both screenshots are different then given website is responsive. This method is not good because Lets assume if slideshows are present in given website while taking the screenshots of that website, the slideshow images present in the given website may change and we will get different screenshots so if we compare the screenshots we will get result...