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
repositories { | |
maven {url: 'file:///C:/usr/repository/'} | |
mavenCentral() | |
maven {url: 'http://download.java.net/maven/2'} | |
maven {url: 'http://maven.glassfish.org/content/repositories/eclipselink'} | |
maven {url: 'http://maven.glassfish.org/content/repositories/eclipselink'} | |
maven {url: 'http://nexus.openqa.org/content/repositories/releases/'} | |
maven {url: 'http://scala-tools.org/repo-releases'} | |
maven {url: 'http://repository.jboss.org/nexus/content/groups/public-jboss/'} |
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
<Connector enableLookups="true" | |
port="8080" | |
protocol="HTTP/1.1" | |
connectionTimeout="20000" | |
redirectPort="8443" /> |
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
@DateTimeFormat(iso=ISO.DATE_TIME) | |
private java.util.Date timestamp; |
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
@DateTimeFormat(style="yyyyMMdd'T'HHmmss.SSSZ") | |
private java.util.Date timestamp; |
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.joda.time.format.DateTimeFormat.createFormatterForStyle(DateTimeFormat.java:702) | |
org.joda.time.format.DateTimeFormat.patternForStyle(DateTimeFormat.java:212) | |
com.comcast.uivr.web.LoggingController_Roo_Controller.ajc$interMethod$com_comcast_uivr_web_LoggingController_Roo_Controller$com_comcast_uivr_web_LoggingController$addDateTimeFormatPatterns(LoggingController_Roo_Controller.aj:98) | |
com.comcast.uivr.web.LoggingController.ajc$interMethodDispatch2$com_comcast_uivr_web$addDateTimeFormatPatterns(LoggingController.java:1) | |
com.comcast.uivr.web.LoggingController_Roo_Controller.ajc$interMethodDispatch1$com_comcast_uivr_web_LoggingController_Roo_Controller$com_comcast_uivr_web_LoggingController$addDateTimeFormatPatterns(LoggingController_Roo_Controller.aj) | |
com.comcast.uivr.web.LoggingController_Roo_Controller.ajc$interMethod$com_comcast_uivr_web_LoggingController_Roo_Controller$com_comcast_uivr_web_LoggingController$list(LoggingController_Roo_Controller.aj:66) | |
com.comcast.uivr.web.LoggingController.list(LoggingCo |
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
@DateTimeFormat(style="MM/dd/yyyy") | |
private java.util.Date timestamp; |
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
"timestamp" : ISODate("2012-01-17T22:30:19.839Z") |
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
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>aspectj-maven-plugin</artifactId> | |
<version>1.3.1</version> | |
<executions> | |
<execution> | |
<phase>process-sources</phase> | |
<goals> | |
<goal>compile</goal> | |
<goal>test-compile</goal> |
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
<configuration> | |
<complianceLevel>1.6</complianceLevel> | |
</configuration> |
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
[ERROR] C:\usr\SYNCH\PACKT\3166\Chapters_Code\ch05\target\generated-sources\groovy-stubs\main\com\baselogic\chapter05\utils\StringUtilities.java:26:0::0 | |
Syntax error, parameterized types are only available if source level is 5.0 | |
[ERROR] -> [Help 1] | |
org.apache.maven.lifecycle.LifecycleExecutionException: | |
Failed to execute goal org.codehaus.mojo:aspectj-maven-plugin:1.3.1:compile (default) on project ch05: | |
Compiler errors: error at public static java.lang.String getRequestQueryString(java.util.Map<java.lang.String, java.lang.String> parameters) { return (java.lang.String)null;} | |
^^^^^^^^^^^^ | |
C:\usr\SYNCH\PACKT\3166\Chapters_Code\ch05\target\generated-sources\groovy-stubs\main\com\baselogic\chapter05\utils\StringUtilities.java:26:0::0 | |
The type Map is not generic; it cannot be parameterized with arguments <String, String> | |
error at public static java.lang.String getRequestQueryString(java.util.Map<java.lang.String, java.lang.String> p |