This quickstart demonstrates the use of a number of HTML5, CSS3 and JavaScript techniques. The registration form uses client side validation based on the constraints also defined on the model class as well as new input attributes like placeholder and autofocus. The member table is populated using RESTful get calls, client side templating and CSS3 styling. This quickstart also has a mobile interface using jQuery Mobile so open it on your favorite mobile device and try that out as well.
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
Unable to create project from archetype [org.jboss.aerogear.archetypes:jboss-html5-mobile-archetype:1.0.0.M2b-SNAPSHOT] | |
org.apache.maven.archetype.exception.ArchetypeGenerationFailure: Error merging velocity templates: Unable to find resource 'archetype-resources/pom.xml' |
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
$ mvn clean package jboss-as:deploy | |
[INFO] Scanning for projects... | |
[ERROR] The build could not read 1 project -> [Help 1] | |
[ERROR] | |
[ERROR] The project test1:test1:1.0-SNAPSHOT (/Users/krisborchers/Documents/workspace/test1/pom.xml) has 13 errors | |
[ERROR] Non-resolvable import POM: Failure to find org.jboss.bom:jboss-javaee-6.0-with-hibernate:pom:3.0.0.Beta1-redhat-1 in http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced @ line 51, column 25 -> [Help 2] | |
[ERROR] Non-resolvable import POM: Failure to find org.jboss.bom:jboss-javaee-6.0-with-tools:pom:3.0.0.Beta1-redhat-1 in http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced @ line 62, column 25 -> [Help 2] | |
[ERROR] 'dependencies.dependency.version' for javax.enterprise:cdi-api:jar is missing. @ line 76, column |
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
08:47:20,084 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) {"JBAS014653: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"JBAS014771: Services with missing/unavailable dependencies" => ["jboss.deployment.unit.\"ROOT.war\".component.MemberService.CREATEjboss.ejb3.statefulDefaultTimeout, jboss.ejb.cache.sfsb-defaultMissing[jboss.deployment.unit.\"ROOT.war\".component.MemberService.CREATEjboss.ejb3.statefulDefaultTimeout, jboss.ejb.cache.sfsb-default]"]}}} |
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 Router = Backbone.Router.extend({ | |
routes: { | |
"": "index", | |
"catalog": "catalog", | |
"catalog/:catID": "items", | |
"approve": "approve" | |
}, |
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
This quickstart demonstrates the use of a number of HTML5, CSS3 and JavaScript techniques. The registration form uses client side validation based on the constraints also defined on the model class as well as new input attributes like placeholder and autofocus. The member table is populated using RESTful get calls, client side templating and CSS3 styling. |
test
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.jboss.resteasy.spi.UnhandledException: java.lang.NullPointerException | |
org.jboss.resteasy.core.SynchronousDispatcher.handleApplicationException(SynchronousDispatcher.java:340) | |
org.jboss.resteasy.core.SynchronousDispatcher.handleException(SynchronousDispatcher.java:214) | |
org.jboss.resteasy.core.SynchronousDispatcher.handleInvokerException(SynchronousDispatcher.java:190) | |
org.jboss.resteasy.core.SynchronousDispatcher.getResponse(SynchronousDispatcher.java:540) | |
org.jboss.resteasy.core.SynchronousDispatcher.invoke(SynchronousDispatcher.java:502) | |
org.jboss.resteasy.core.SynchronousDispatcher.invoke(SynchronousDispatcher.java:119) | |
org.jboss.resteasy.plugins.server.servlet.ServletContainerDispatcher.service(ServletContainerDispatcher.java:208) | |
org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher.service(HttpServletDispatcher.java:55) | |
org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher.service(HttpServletDispatcher.java:50) |
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
Failed to execute goal on project jbwdemo-application: Could not resolve dependencies for project org.jboss.jbw.keynote2012:jbwdemo-application:ear:1.0-SNAPSHOT: The following artifacts could not be resolved: org.jboss.jbw.keynote2012:jbwdemo-model:jar:1.0-SNAPSHOT, org.jboss.jbw.keynote2012:jbwdemo-services:war:1.0-SNAPSHOT: Could not find artifact org.jboss.jbw.keynote2012:jbwdemo-model:jar:1.0-SNAPSHOT in JBOSS_NEXUS (https://repository.jboss.org/nexus/content/groups/public) |
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
jQuery.noConflict(); | |
(function($) { | |
$(function() { | |
setInterval( "slideSwitch()", 5000 ); | |
}); | |
})(jQuery); | |