This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # File references | |
| JbossStandAloneFile=/usr/local/jboss/bin/standalone.sh | |
| PlumbrPropertiesFile=/opt/securelink/java/plumbr/plumbr.properties | |
| # JBoss file setting o be added in /usr/local/jboss/bin/standalone.sh | |
| JbossSetting='JAVA_OPTS=\"$JAVA_OPTS -javaagent:\/opt\/securelink\/java\/plumbr\/plumbr.jar\"' | |
| # Plumbr settings to be added in /opt/securelink/java/tools/plumbr/plumbr.properties |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var noInternetPopup = null; | |
| $scope.showPopup = function() { | |
| noInternetPopup = $ionicPopup.show({ | |
| template: '<p>Por favor verifique que el servicio de red esté habilitado.</p>', | |
| title: 'No hay conexión a internet', | |
| scope: $scope | |
| }); | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ep 16, 2014 12:39:15 AM com.sun.jersey.spi.container.ContainerResponse mapMappableContainerException | |
| SEVERE: The RuntimeException could not be mapped to a response, re-throwing to the HTTP container | |
| java.lang.IllegalArgumentException: [Assertion failed] - this argument is required; it must not be null | |
| at org.springframework.util.Assert.notNull(Assert.java:112) | |
| at org.springframework.util.Assert.notNull(Assert.java:123) | |
| at org.springframework.data.jpa.repository.query.ParameterMetadataProvider$ParameterMetadata.prepare(ParameterMetadataProvider.java:156) | |
| at org.springframework.data.jpa.repository.query.CriteriaQueryParameterBinder.bind(CriteriaQueryParameterBinder.java:68) | |
| at org.springframework.data.jpa.repository.query.ParameterBinder.bind(ParameterBinder.java:108) | |
| at org.springframework.data.jpa.repository.query.PartTreeJpaQuery$CountQueryPreparer.invokeBinding(PartTreeJpaQuery.java:196) | |
| at org.springframework.data.jpa.repository.query.PartTreeJpaQuery$QueryPreparer.createQuery(PartTreeJpaQuery.java: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| java.lang.IllegalArgumentException: argument type mismatch | |
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) | |
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
| at java.lang.reflect.Method.invoke(Method.java:606) | |
| at com.gangfive.sima.utils.PojoUtils.mapPojoFromEjb(PojoUtils.java:37) | |
| at com.gangfive.sima.controllers.PacientesController.getAll(PacientesController.java:85) | |
| at com.gangfive.sima.controllers.PacientesController$$FastClassByCGLIB$$654fe5ff.invoke(<generated>) | |
| at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204) | |
| at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:698) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| org.codehaus.jackson.map.JsonMappingException: failed to lazily initialize a collection of role: com.gangfive.sima.ejb.Organizacion.usuarios, could not initialize proxy - no Session (through reference chain: com.gangfive.sima.contracts.CalendarioCitaResponse["citas"]->java.util.ArrayList[0]->com.gangfive.sima.pojo.CalendarioCitaPOJO["paciente"]->com.gangfive.sima.ejb.Paciente["organizacion"]->com.gangfive.sima.ejb.Organizacion["usuarios"]) | |
| at org.codehaus.jackson.map.JsonMappingException.wrapWithPath(JsonMappingException.java:218) | |
| at org.codehaus.jackson.map.JsonMappingException.wrapWithPath(JsonMappingException.java:183) | |
| at org.codehaus.jackson.map.ser.std.SerializerBase.wrapAndThrow(SerializerBase.java:140) | |
| at org.codehaus.jackson.map.ser.std.BeanSerializerBase.serializeFields(BeanSerializerBase.java:158) | |
| at org.codehaus.jackson.map.ser.BeanSerializer.serialize(BeanSerializer.java:112) | |
| at org.codehaus.jackson.map.ser.BeanPropertyWriter.serializeAsField(BeanPropertyWriter.java:446) | |
| at org.codehaus.jac |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var myApp = angular.module('behaviorApp', []); | |
| app.controller("AppCtrl", function ($scope) { | |
| $scope.loadMoreTweets = function (){ | |
| alert("Loading tweets!") | |
| } | |
| $scope.deleteTweets = function (){ | |
| alert("Deleting tweets!") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var myApp = angular.module('behaviorApp', []); | |
| app.directive("enter", function () { | |
| return function (scope, element) { | |
| element.bind("mouseenter", function () { | |
| console.log("I'm inside of you"); | |
| }) | |
| } | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| app.directive("superman", function () { | |
| return { | |
| restrict:"A"; | |
| link: function () { | |
| alert("I'm working") | |
| } | |
| } | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var myApp = angular.module('myApp', []); | |
| //This is a service | |
| myApp.Factory('Data', function () { | |
| return {message:"I'm data from a service"} | |
| }) | |
| //This is a filter | |
| myApp.filter('reverse', function (Data) { | |
| return function (text) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var myApp = angular.module('myApp', []); | |
| //This is the service | |
| myApp.Factory('Data', function () { | |
| return {message:"I'm data from a service"} | |
| }) | |
| //This is the controller | |
| function FirstCntrl ($scope, Data) { | |
| $scope.data = Data; |
NewerOlder