View 1.log
This file contains 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
/Users/ivanursul/development/Tools/apache-tomcat-8.0.24/bin/catalina.sh run | |
objc[4061]: Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home/bin/java and /Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home/jre/lib/libinstrument.dylib. One of the two will be used. Which one is undefined. | |
Connected to the target VM, address: '127.0.0.1:53079', transport: 'socket' | |
[2015-08-27 02:49:55,452] Artifact Gradle : iu-sport-ui : iu-sport-ui.war (exploded): Server is not connected. Deploy is not available. | |
[2015-08-27 02:49:55,453] Artifact Gradle : iu-sport:iu-sport-rest-api : iu-sport-rest-api.war (exploded): Server is not connected. Deploy is not available. | |
27-Aug-2015 14:49:56.873 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server version: Apache Tomcat/8.0.24 | |
27-Aug-2015 14:49:56.876 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server built: Jul 1 2015 20:19:55 UTC | |
27-Aug-2015 14:49:56.876 INFO [ |
View gist:c81a2577ef989f47e9c3
This file contains 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
<mvc:argument-resolvers> | |
<ref bean="pagedRequestHandlerMethodArgumentResolver" /> | |
</mvc:argument-resolvers> |
View gist:cdfa40997ccf77323035
This file contains 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
package org.lnu.is.web.rest.controller.asset; | |
import javax.annotation.Resource; | |
import org.lnu.is.facade.facade.Facade; | |
import org.lnu.is.facade.resource.asset.AssetResource; | |
import org.lnu.is.facade.resource.message.MessageResource; | |
import org.lnu.is.facade.resource.message.MessageType; | |
import org.lnu.is.facade.resource.search.PagedRequest; | |
import org.lnu.is.facade.resource.search.PagedResultResource; |
View gist:0e1c37cca29b464c5fb4
This file contains 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
package org.lnu.is.facade.resource.search; | |
import org.lnu.is.facade.annotations.Limit; | |
import org.lnu.is.facade.annotations.Offset; | |
/** | |
/** | |
* Paged Request, that comes from controller. | |
* @author ivanursul |
View gist:6173da9e850332a84eca
This file contains 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
fdsfdsfds |
View gist:b8cb6a1aaa82ee385644
This file contains 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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>google-guice</groupId> | |
<artifactId>google-guice</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>google-guice</name> |
View pom.xml
This file contains 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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>google-guice</groupId> | |
<artifactId>google-guice</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>google-guice</name> |
View gist:3084d08aa96ccbf7c904
This file contains 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
package org.ivanursul.guice.service; | |
public interface NotificationService { | |
boolean sendMessage(String msg, String receipient); | |
} |
View gist:448f6f104c490b26ce89
This file contains 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
package org.ivanursul.guice.service; | |
import javax.inject.Singleton; | |
@Singleton | |
public class EmailService implements NotificationService { | |
public boolean sendMessage(final String msg, final String receipient) { | |
//some fancy code to send email |
View Facebookservice
This file contains 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
package org.ivanursul.guice.service; | |
import javax.inject.Singleton; | |
@Singleton | |
public class FacebookService implements NotificationService { | |
public boolean sendMessage(final String msg, final String receipient) { | |
//some complex code to send Facebook message |
OlderNewer