├── Chapter 04 ├── Eclipse │ ├── Hello-World-JSP │ │ ├── web │ │ │ ├── blank.jsp │ │ │ ├── includer.jsp │ │ │ └── dynamicIncluder.jsp │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.core.resources.prefs │ ├── Hello-User-JSP │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.core.resources.prefs │ └── Customer-Support-v2 │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.core.resources.prefs │ │ └── web │ │ ├── index.jsp │ │ └── WEB-INF │ │ └── jsp │ │ └── base.jspf └── IntelliJ │ ├── Hello-World-JSP │ ├── web │ │ ├── blank.jsp │ │ ├── includer.jsp │ │ └── dynamicIncluder.jsp │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── Hello-User-JSP │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Customer-Support-v2 │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ └── web │ ├── index.jsp │ └── WEB-INF │ └── jsp │ └── base.jspf ├── Chapter 02 ├── Sample-Debug-IntelliJ │ └── .idea │ │ ├── .name │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── dictionaries │ │ └── Nicholas.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml ├── Sample-Debug-Eclipse │ └── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.ws.service.policy.prefs │ │ └── org.eclipse.ltk.core.refactoring.prefs └── sample-deployment.war ├── Chapter 05 ├── Eclipse │ ├── Shopping-Cart │ │ ├── web │ │ │ ├── index.jsp │ │ │ └── WEB-INF │ │ │ │ └── jsp │ │ │ │ └── base.jspf │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.core.resources.prefs │ ├── Session-Activity │ │ ├── web │ │ │ ├── index.jsp │ │ │ └── WEB-INF │ │ │ │ └── jsp │ │ │ │ └── base.jspf │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.core.resources.prefs │ └── Customer-Support-v3 │ │ ├── web │ │ ├── index.jsp │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── base.jspf │ │ └── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.core.resources.prefs └── IntelliJ │ ├── Shopping-Cart │ ├── web │ │ ├── index.jsp │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── base.jspf │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── Customer-Support-v3 │ ├── web │ │ ├── index.jsp │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── base.jspf │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Session-Activity │ ├── web │ ├── index.jsp │ └── WEB-INF │ │ └── jsp │ │ └── base.jspf │ └── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ └── profiles_settings.xml │ ├── scopes │ └── scope_settings.xml │ └── vcs.xml ├── Chapter 07 ├── Eclipse │ ├── Address-Book │ │ ├── web │ │ │ ├── index.jsp │ │ │ └── WEB-INF │ │ │ │ └── jsp │ │ │ │ └── base.jspf │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.core.resources.prefs │ ├── Address-Book-i18n │ │ ├── web │ │ │ ├── index.jsp │ │ │ └── WEB-INF │ │ │ │ └── jsp │ │ │ │ └── base.jspf │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.core.resources.prefs │ └── Customer-Support-v5 │ │ ├── web │ │ ├── index.jsp │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── base.jspf │ │ └── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.core.resources.prefs └── IntelliJ │ ├── Address-Book │ ├── web │ │ ├── index.jsp │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── base.jspf │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── Address-Book-i18n │ ├── web │ │ ├── index.jsp │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── base.jspf │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Customer-Support-v5 │ ├── web │ ├── index.jsp │ └── WEB-INF │ │ └── jsp │ │ └── base.jspf │ └── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ └── profiles_settings.xml │ ├── scopes │ └── scope_settings.xml │ └── vcs.xml ├── Chapter 08 ├── Eclipse │ ├── Template-Tags │ │ ├── web │ │ │ ├── index.jsp │ │ │ └── WEB-INF │ │ │ │ └── jsp │ │ │ │ └── view │ │ │ │ └── hello.jsp │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.core.resources.prefs │ └── Customer-Support-v6 │ │ ├── web │ │ ├── index.jsp │ │ └── resource │ │ │ └── stylesheet │ │ │ └── login.css │ │ └── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.core.resources.prefs └── IntelliJ │ ├── Template-Tags │ ├── web │ │ ├── index.jsp │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── view │ │ │ └── hello.jsp │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Customer-Support-v6 │ ├── web │ ├── index.jsp │ └── resource │ │ └── stylesheet │ │ └── login.css │ └── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ └── profiles_settings.xml │ ├── scopes │ └── scope_settings.xml │ └── vcs.xml ├── Chapter 06 ├── Eclipse │ ├── User-Profile │ │ ├── web │ │ │ ├── index.jsp │ │ │ └── WEB-INF │ │ │ │ └── jsp │ │ │ │ └── base.jspf │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.core.resources.prefs │ └── Customer-Support-v4 │ │ ├── web │ │ ├── index.jsp │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── base.jspf │ │ └── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.core.resources.prefs └── IntelliJ │ ├── User-Profile │ ├── web │ │ ├── index.jsp │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── base.jspf │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Customer-Support-v4 │ ├── web │ ├── index.jsp │ └── WEB-INF │ │ └── jsp │ │ └── base.jspf │ └── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ └── profiles_settings.xml │ ├── scopes │ └── scope_settings.xml │ └── vcs.xml ├── Chapter 10 ├── Eclipse │ ├── Game-Site │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.core.resources.prefs │ │ └── web │ │ │ ├── resource │ │ │ └── image │ │ │ │ ├── ticTacToe-hover.png │ │ │ │ ├── ticTacToe-player.png │ │ │ │ └── ticTacToe-opponent.png │ │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── base.jspf │ ├── Customer-Support-v8 │ │ ├── web │ │ │ ├── index.jsp │ │ │ └── resource │ │ │ │ └── stylesheet │ │ │ │ └── login.css │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.core.resources.prefs │ └── Simulated-Cluster │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.core.resources.prefs │ │ └── web │ │ ├── index.jsp │ │ └── WEB-INF │ │ └── jsp │ │ └── base.jspf └── IntelliJ │ ├── Customer-Support-v8 │ ├── web │ │ ├── index.jsp │ │ └── resource │ │ │ └── stylesheet │ │ │ └── login.css │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── Game-Site │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── web │ │ ├── resource │ │ └── image │ │ │ ├── ticTacToe-hover.png │ │ │ ├── ticTacToe-player.png │ │ │ └── ticTacToe-opponent.png │ │ └── WEB-INF │ │ └── jsp │ │ └── base.jspf │ └── Simulated-Cluster │ ├── web │ ├── index.jsp │ └── WEB-INF │ │ └── jsp │ │ └── base.jspf │ └── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ └── profiles_settings.xml │ ├── scopes │ └── scope_settings.xml │ └── vcs.xml ├── Chapter 16 ├── Eclipse │ ├── HR-Portal │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── web │ │ │ └── WEB-INF │ │ │ │ └── i18n │ │ │ │ ├── titles_en_US.properties │ │ │ │ └── messages_en_US.properties │ │ └── source │ │ │ └── production │ │ │ └── java │ │ │ └── com │ │ │ └── wrox │ │ │ └── site │ │ │ └── Gender.java │ ├── Custom-Constraints │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── web │ │ │ └── WEB-INF │ │ │ │ └── i18n │ │ │ │ ├── titles_en_US.properties │ │ │ │ └── messages_en_US.properties │ │ └── source │ │ │ └── production │ │ │ └── java │ │ │ └── com │ │ │ └── wrox │ │ │ └── site │ │ │ └── Gender.java │ └── Customer-Support-v13 │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs │ │ ├── web │ │ └── resource │ │ │ └── stylesheet │ │ │ └── login.css │ │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── site │ │ └── UserRepository.java └── IntelliJ │ ├── HR-Portal │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── web │ │ └── WEB-INF │ │ │ └── i18n │ │ │ ├── titles_en_US.properties │ │ │ └── messages_en_US.properties │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── site │ │ └── Gender.java │ ├── Custom-Constraints │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── web │ │ └── WEB-INF │ │ │ └── i18n │ │ │ ├── titles_en_US.properties │ │ │ └── messages_en_US.properties │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── site │ │ └── Gender.java │ └── Customer-Support-v13 │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ ├── web │ └── resource │ │ └── stylesheet │ │ └── login.css │ └── source │ └── production │ └── java │ └── com │ └── wrox │ └── site │ └── UserRepository.java ├── Chapter 03 ├── Eclipse │ ├── Hello-User │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.core.resources.prefs │ ├── Hello-World │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.core.resources.prefs │ └── Customer-Support-v1 │ │ └── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.core.resources.prefs └── IntelliJ │ ├── Hello-User │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── Hello-World │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Customer-Support-v1 │ └── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ └── profiles_settings.xml │ ├── scopes │ └── scope_settings.xml │ └── vcs.xml ├── Chapter 09 ├── Eclipse │ ├── Customer-Support-v7 │ │ ├── web │ │ │ ├── index.jsp │ │ │ └── resource │ │ │ │ └── stylesheet │ │ │ │ └── login.css │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ ├── Filter-Async │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── view │ │ │ ├── async.jsp │ │ │ └── nonAsync.jsp │ ├── Filter-Order │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ └── Compression-Filter │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ ├── index.jsp │ │ └── WEB-INF │ │ └── jsp │ │ └── base.jspf └── IntelliJ │ ├── Customer-Support-v7 │ ├── web │ │ ├── index.jsp │ │ └── resource │ │ │ └── stylesheet │ │ │ └── login.css │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── Filter-Async │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── web │ │ └── WEB-INF │ │ └── jsp │ │ └── view │ │ ├── async.jsp │ │ └── nonAsync.jsp │ ├── Filter-Order │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Compression-Filter │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ └── web │ ├── index.jsp │ └── WEB-INF │ └── jsp │ └── base.jspf ├── Chapter 11 ├── Eclipse │ ├── Customer-Support-v9 │ │ ├── web │ │ │ ├── index.jsp │ │ │ └── resource │ │ │ │ └── stylesheet │ │ │ │ └── login.css │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ └── Logging-Integration │ │ ├── web │ │ └── index.jsp │ │ └── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs └── IntelliJ │ ├── Customer-Support-v9 │ ├── web │ │ ├── index.jsp │ │ └── resource │ │ │ └── stylesheet │ │ │ └── login.css │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Logging-Integration │ ├── web │ └── index.jsp │ └── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ └── profiles_settings.xml │ ├── scopes │ └── scope_settings.xml │ └── vcs.xml ├── Chapter 13 ├── Eclipse │ ├── Spring-Forms │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── view │ │ │ └── user │ │ │ ├── add.jsp │ │ │ └── edit.jsp │ ├── Customer-Support-v10 │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ │ └── resource │ │ │ └── stylesheet │ │ │ └── login.css │ └── Model-View-Controller │ │ └── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.validation.prefs │ │ └── org.eclipse.m2e.core.prefs └── IntelliJ │ ├── Spring-Forms │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── web │ │ └── WEB-INF │ │ └── jsp │ │ └── view │ │ └── user │ │ ├── add.jsp │ │ └── edit.jsp │ ├── Customer-Support-v10 │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── web │ │ └── resource │ │ └── stylesheet │ │ └── login.css │ └── Model-View-Controller │ └── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ └── profiles_settings.xml │ ├── scopes │ └── scope_settings.xml │ └── vcs.xml ├── Chapter 17 ├── Eclipse │ ├── Web-Service │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ └── Customer-Support-v14 │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs │ │ ├── web │ │ └── resource │ │ │ └── stylesheet │ │ │ └── login.css │ │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── site │ │ └── UserRepository.java └── IntelliJ │ ├── Web-Service │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Customer-Support-v14 │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ ├── web │ └── resource │ │ └── stylesheet │ │ └── login.css │ └── source │ └── production │ └── java │ └── com │ └── wrox │ └── site │ └── UserRepository.java ├── Chapter 18 ├── Eclipse │ ├── AMQP-Messaging │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── view │ │ │ ├── logout.jsp │ │ │ └── login.jsp │ ├── Publish-Subscribe │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── view │ │ │ ├── logout.jsp │ │ │ └── login.jsp │ └── WebSocket-Messaging │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ └── WEB-INF │ │ └── jsp │ │ └── view │ │ ├── logout.jsp │ │ └── login.jsp └── IntelliJ │ ├── AMQP-Messaging │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── web │ │ └── WEB-INF │ │ └── jsp │ │ └── view │ │ ├── logout.jsp │ │ └── login.jsp │ ├── Publish-Subscribe │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── web │ │ └── WEB-INF │ │ └── jsp │ │ └── view │ │ └── logout.jsp │ └── WebSocket-Messaging │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ └── web │ └── WEB-INF │ └── jsp │ └── view │ └── logout.jsp ├── Chapter 21 ├── Eclipse │ ├── Spring-JPA │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ └── source │ │ │ └── production │ │ │ └── java │ │ │ └── com │ │ │ └── wrox │ │ │ └── site │ │ │ ├── entities │ │ │ └── Gender.java │ │ │ └── AuthorRepository.java │ └── Customer-Support-v15 │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ └── resource │ │ └── stylesheet │ │ └── login.css └── IntelliJ │ ├── Spring-JPA │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── site │ │ ├── entities │ │ └── Gender.java │ │ └── AuthorRepository.java │ └── Customer-Support-v15 │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ └── web │ └── resource │ └── stylesheet │ └── login.css ├── Chapter 23 ├── Eclipse │ ├── Search-Engine │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ ├── Advanced-Criteria │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ └── Customer-Support-v17 │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ └── resource │ │ └── stylesheet │ │ └── login.css └── IntelliJ │ ├── Search-Engine │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── Advanced-Criteria │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Customer-Support-v17 │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ └── web │ └── resource │ └── stylesheet │ └── login.css ├── Chapter 28 ├── Eclipse │ ├── OAuth-Client │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ └── database │ │ │ └── create.sql │ └── Customer-Support-v21 │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs │ │ ├── web │ │ └── resource │ │ │ └── stylesheet │ │ │ └── login.css │ │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── site │ │ └── OAuthNonceServices.java └── IntelliJ │ ├── OAuth-Client │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── database │ │ └── create.sql │ └── Customer-Support-v21 │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ ├── web │ └── resource │ │ └── stylesheet │ │ └── login.css │ └── source │ └── production │ └── java │ └── com │ └── wrox │ └── site │ └── OAuthNonceServices.java ├── Chapter 12 ├── Eclipse │ ├── Spring-Java-Config │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── source │ │ │ └── production │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── wrox │ │ │ │ └── site │ │ │ │ └── GreetingService.java │ │ └── web │ │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── base.jspf │ ├── Spring-XML-Config │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── source │ │ │ └── production │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── wrox │ │ │ │ └── GreetingService.java │ │ └── web │ │ │ └── WEB-INF │ │ │ └── jsp │ │ │ └── base.jspf │ ├── Spring-Hybrid-Config │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ └── source │ │ │ └── production │ │ │ └── java │ │ │ └── com │ │ │ └── wrox │ │ │ └── GreetingService.java │ └── Spring-One-Context-XML-Config │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs │ │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── GreetingService.java └── IntelliJ │ ├── Spring-Hybrid-Config │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── GreetingService.java │ ├── Spring-Java-Config │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── source │ │ └── production │ │ │ └── java │ │ │ └── com │ │ │ └── wrox │ │ │ └── site │ │ │ └── GreetingService.java │ └── web │ │ └── WEB-INF │ │ └── jsp │ │ └── base.jspf │ ├── Spring-XML-Config │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── source │ │ └── production │ │ │ └── java │ │ │ └── com │ │ │ └── wrox │ │ │ └── GreetingService.java │ └── web │ │ └── WEB-INF │ │ └── jsp │ │ └── base.jspf │ └── Spring-One-Context-XML-Config │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ └── source │ └── production │ └── java │ └── com │ └── wrox │ └── GreetingService.java ├── Chapter 14 ├── Eclipse │ ├── Discussion-Board │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ └── Customer-Support-v11 │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs │ │ ├── web │ │ └── resource │ │ │ └── stylesheet │ │ │ └── login.css │ │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── site │ │ └── UserRepository.java └── IntelliJ │ ├── Customer-Support-v11 │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── web │ │ └── resource │ │ │ └── stylesheet │ │ │ └── login.css │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── site │ │ └── UserRepository.java │ └── Discussion-Board │ └── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ └── profiles_settings.xml │ ├── scopes │ └── scope_settings.xml │ └── vcs.xml ├── Chapter 20 ├── Eclipse │ ├── Entity-Mappings │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.jpt.core.prefs │ └── Enums-Dates-Lobs │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.jpt.core.prefs │ │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── site │ │ └── entities │ │ └── Gender.java └── IntelliJ │ ├── Entity-Mappings │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Enums-Dates-Lobs │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ └── source │ └── production │ └── java │ └── com │ └── wrox │ └── site │ └── entities │ └── Gender.java ├── Chapter 22 ├── Eclipse │ ├── Spring-Data-JPA │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ └── source │ │ │ └── production │ │ │ └── java │ │ │ └── com │ │ │ └── wrox │ │ │ └── site │ │ │ └── entities │ │ │ └── Gender.java │ └── Customer-Support-v16 │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ └── resource │ │ └── stylesheet │ │ └── login.css └── IntelliJ │ ├── Spring-Data-JPA │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── site │ │ └── entities │ │ └── Gender.java │ └── Customer-Support-v16 │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ └── web │ └── resource │ └── stylesheet │ └── login.css ├── Chapter 24 ├── Eclipse │ ├── Advanced-Mappings │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ └── Customer-Support-v18 │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ └── resource │ │ └── stylesheet │ │ └── login.css └── IntelliJ │ ├── Advanced-Mappings │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Customer-Support-v18 │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ └── web │ └── resource │ └── stylesheet │ └── login.css ├── Chapter 26 ├── Eclipse │ ├── Authentication-App │ │ └── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ └── Customer-Support-v19 │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ └── resource │ │ └── stylesheet │ │ └── login.css └── IntelliJ │ ├── Authentication-App │ └── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── sqldialects.xml │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── scopes │ │ └── scope_settings.xml │ │ └── vcs.xml │ └── Customer-Support-v19 │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ └── web │ └── resource │ └── stylesheet │ └── login.css ├── Chapter 15 ├── Eclipse │ ├── Customer-Support-v12 │ │ ├── .settings │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── web │ │ │ └── resource │ │ │ │ └── stylesheet │ │ │ │ └── login.css │ │ └── source │ │ │ └── production │ │ │ └── java │ │ │ └── com │ │ │ └── wrox │ │ │ └── site │ │ │ └── UserRepository.java │ └── Localized-Application │ │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.validation.prefs │ │ └── org.eclipse.m2e.core.prefs │ │ └── web │ │ └── WEB-INF │ │ └── i18n │ │ ├── errors_en_US.properties │ │ └── errors_es_MX.properties └── IntelliJ │ ├── Customer-Support-v12 │ ├── .idea │ │ ├── description.html │ │ ├── ant.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── web │ │ └── resource │ │ │ └── stylesheet │ │ │ └── login.css │ └── source │ │ └── production │ │ └── java │ │ └── com │ │ └── wrox │ │ └── site │ │ └── UserRepository.java │ └── Localized-Application │ ├── .idea │ ├── description.html │ ├── ant.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ └── web │ └── WEB-INF │ └── i18n │ ├── errors_en_US.properties │ └── errors_es_MX.properties └── Chapter 27 ├── Eclipse └── Customer-Support-v20 │ ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.validation.prefs │ ├── org.eclipse.wst.jsdt.ui.superType.container │ └── org.eclipse.m2e.core.prefs │ └── web │ └── resource │ └── stylesheet │ └── login.css └── IntelliJ └── Customer-Support-v20 ├── .idea ├── description.html ├── ant.xml ├── copyright │ └── profiles_settings.xml ├── scopes │ └── scope_settings.xml └── vcs.xml └── web └── resource └── stylesheet └── login.css /Chapter 04/Eclipse/Hello-World-JSP/web/blank.jsp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-World-JSP/web/blank.jsp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 02/Sample-Debug-IntelliJ/.idea/.name: -------------------------------------------------------------------------------- 1 | Sample-Debug-IntelliJ -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Shopping-Cart/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Shopping-Cart/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Template-Tags/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Session-Activity/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 06/Eclipse/User-Profile/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/User-Profile/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book-i18n/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book-i18n/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Template-Tags/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Game-Site/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 16/Eclipse/HR-Portal/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 02/Sample-Debug-Eclipse/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Hello-User/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Hello-World/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Hello-User/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Hello-User-JSP/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Hello-World-JSP/web/includer.jsp: -------------------------------------------------------------------------------- 1 | <%@ include file="index.jsp" %> 2 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-World-JSP/web/includer.jsp: -------------------------------------------------------------------------------- 1 | <%@ include file="index.jsp" %> 2 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Customer-Support-v3/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Shopping-Cart/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Customer-Support-v3/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Session-Activity/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 06/Eclipse/Customer-Support-v4/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 06/Eclipse/User-Profile/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/Customer-Support-v4/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Customer-Support-v5/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Customer-Support-v5/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Customer-Support-v6/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Template-Tags/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Customer-Support-v6/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Customer-Support-v7/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Filter-Async/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Filter-Order/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Customer-Support-v7/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Customer-Support-v8/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Customer-Support-v8/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Game-Site/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 11/Eclipse/Customer-Support-v9/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 11/Eclipse/Logging-Integration/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Customer-Support-v9/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Logging-Integration/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Spring-Forms/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/HR-Portal/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 17/Eclipse/Web-Service/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 18/Eclipse/AMQP-Messaging/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 21/Eclipse/Spring-JPA/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Spring-JPA/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Search-Engine/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 28/Eclipse/OAuth-Client/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Customer-Support-v1/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Hello-World/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Customer-Support-v2/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Hello-World-JSP/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-User-JSP/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-World-JSP/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Customer-Support-v3/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Session-Activity/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Shopping-Cart/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 06/Eclipse/Customer-Support-v4/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/User-Profile/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book-i18n/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Customer-Support-v5/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Customer-Support-v6/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Template-Tags/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Compression-Filter/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Customer-Support-v7/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Filter-Async/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Filter-Order/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Customer-Support-v8/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Simulated-Cluster/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Simulated-Cluster/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Simulated-Cluster/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 11/Eclipse/Customer-Support-v9/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 11/Eclipse/Logging-Integration/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-Java-Config/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-XML-Config/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Spring-Forms/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 14/Eclipse/Discussion-Board/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Custom-Constraints/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 17/IntelliJ/Web-Service/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 18/Eclipse/Publish-Subscribe/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 18/Eclipse/WebSocket-Messaging/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/AMQP-Messaging/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 20/Eclipse/Entity-Mappings/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 20/Eclipse/Enums-Dates-Lobs/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 20/IntelliJ/Entity-Mappings/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 22/Eclipse/Spring-Data-JPA/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 22/IntelliJ/Spring-Data-JPA/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Advanced-Criteria/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Search-Engine/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 24/Eclipse/Advanced-Mappings/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 26/Eclipse/Authentication-App/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/OAuth-Client/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Customer-Support-v1/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Hello-World-JSP/web/dynamicIncluder.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Customer-Support-v2/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-World-JSP/web/dynamicIncluder.jsp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Customer-Support-v3/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Session-Activity/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/Customer-Support-v4/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book-i18n/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Customer-Support-v5/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Customer-Support-v6/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Compression-Filter/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Customer-Support-v7/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Customer-Support-v8/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Simulated-Cluster/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Customer-Support-v9/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Logging-Integration/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-Hybrid-Config/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Hybrid-Config/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Java-Config/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-XML-Config/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Customer-Support-v10/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Model-View-Controller/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Customer-Support-v10/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 14/Eclipse/Customer-Support-v11/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 14/IntelliJ/Customer-Support-v11/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 14/IntelliJ/Discussion-Board/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 15/Eclipse/Customer-Support-v12/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 15/Eclipse/Localized-Application/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Customer-Support-v12/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Customer-Support-v13/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Custom-Constraints/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Customer-Support-v13/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 17/Eclipse/Customer-Support-v14/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 17/IntelliJ/Customer-Support-v14/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/Publish-Subscribe/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/WebSocket-Messaging/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 20/IntelliJ/Enums-Dates-Lobs/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 21/Eclipse/Customer-Support-v15/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Customer-Support-v15/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 22/Eclipse/Customer-Support-v16/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 22/IntelliJ/Customer-Support-v16/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Customer-Support-v17/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Advanced-Criteria/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Customer-Support-v17/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 24/Eclipse/Customer-Support-v18/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 24/IntelliJ/Advanced-Mappings/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 24/IntelliJ/Customer-Support-v18/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 26/Eclipse/Customer-Support-v19/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 26/IntelliJ/Authentication-App/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 26/IntelliJ/Customer-Support-v19/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 27/Eclipse/Customer-Support-v20/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 27/IntelliJ/Customer-Support-v20/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 28/Eclipse/Customer-Support-v21/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/Customer-Support-v21/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-One-Context-XML-Config/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Model-View-Controller/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Localized-Application/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-One-Context-XML-Config/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Chapter 16/Eclipse/HR-Portal/web/WEB-INF/i18n/titles_en_US.properties: -------------------------------------------------------------------------------- 1 | title.create.employee=Create Employee 2 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/HR-Portal/web/WEB-INF/i18n/titles_en_US.properties: -------------------------------------------------------------------------------- 1 | title.create.employee=Create Employee 2 | -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Customer-Support-v2/web/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page session="false" %> 2 | 3 | -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Hello-User/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Hello-World/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Customer-Support-v2/web/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page session="false" %> 2 | 3 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Shopping-Cart/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/User-Profile/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Template-Tags/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Filter-Async/web/WEB-INF/jsp/view/async.jsp: -------------------------------------------------------------------------------- 1 | <% System.out.println("In async.jsp."); %> 2 | Async JSP 3 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Filter-Async/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Filter-Order/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Game-Site/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Spring-Forms/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 15/Eclipse/Localized-Application/web/WEB-INF/i18n/errors_en_US.properties: -------------------------------------------------------------------------------- 1 | bad.food.exception=You ate bad food. 2 | -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Localized-Application/web/WEB-INF/i18n/errors_en_US.properties: -------------------------------------------------------------------------------- 1 | bad.food.exception=You ate bad food. 2 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Custom-Constraints/web/WEB-INF/i18n/titles_en_US.properties: -------------------------------------------------------------------------------- 1 | title.create.employee=Create Employee 2 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Custom-Constraints/web/WEB-INF/i18n/titles_en_US.properties: -------------------------------------------------------------------------------- 1 | title.create.employee=Create Employee 2 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/HR-Portal/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 17/IntelliJ/Web-Service/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Spring-JPA/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Search-Engine/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/OAuth-Client/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 02/sample-deployment.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikibook/projavaforwebapps/HEAD/Chapter 02/sample-deployment.war -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Hello-User/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-User-JSP/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-World-JSP/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Shopping-Cart/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Session-Activity/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Shopping-Cart/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book-i18n/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Compression-Filter/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Filter-Async/web/WEB-INF/jsp/view/async.jsp: -------------------------------------------------------------------------------- 1 | <% System.out.println("In async.jsp."); %> 2 | Async JSP 3 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Game-Site/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Simulated-Cluster/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Java-Config/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-XML-Config/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 14/IntelliJ/Discussion-Board/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/HR-Portal/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Custom-Constraints/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/AMQP-Messaging/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/Publish-Subscribe/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 20/IntelliJ/Entity-Mappings/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 20/IntelliJ/Enums-Dates-Lobs/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 21/Eclipse/Spring-JPA/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 22/IntelliJ/Spring-Data-JPA/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Advanced-Criteria/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 24/IntelliJ/Advanced-Mappings/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 26/IntelliJ/Authentication-App/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Hello-User/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Hello-World/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Hello-World/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Customer-Support-v1/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Hello-User-JSP/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Hello-World-JSP/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Customer-Support-v2/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Session-Activity/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Shopping-Cart/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Customer-Support-v3/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Session-Activity/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | -------------------------------------------------------------------------------- /Chapter 06/Eclipse/User-Profile/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/Customer-Support-v4/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Customer-Support-v5/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Template-Tags/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Customer-Support-v6/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Filter-Async/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Filter-Async/web/WEB-INF/jsp/view/nonAsync.jsp: -------------------------------------------------------------------------------- 1 | <% System.out.println("In nonAsync.jsp."); %> 2 | Non-Async JSP 3 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Filter-Order/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Customer-Support-v7/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Game-Site/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Customer-Support-v8/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Customer-Support-v9/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Logging-Integration/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Hybrid-Config/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Spring-Forms/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Customer-Support-v10/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Model-View-Controller/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 14/IntelliJ/Customer-Support-v11/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Customer-Support-v12/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Localized-Application/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/HR-Portal/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Customer-Support-v13/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 17/Eclipse/Web-Service/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 17/Eclipse/Web-Service/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 17/IntelliJ/Customer-Support-v14/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 18/Eclipse/AMQP-Messaging/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/WebSocket-Messaging/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 20/Eclipse/Entity-Mappings/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 21/Eclipse/Spring-JPA/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Customer-Support-v15/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 22/Eclipse/Spring-Data-JPA/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 22/IntelliJ/Customer-Support-v16/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Search-Engine/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Customer-Support-v17/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 24/IntelliJ/Customer-Support-v18/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 26/IntelliJ/Customer-Support-v19/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 27/IntelliJ/Customer-Support-v20/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 28/Eclipse/OAuth-Client/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/Customer-Support-v21/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 02/Sample-Debug-Eclipse/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Customer-Support-v1/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Customer-Support-v2/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Hello-User-JSP/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Hello-World-JSP/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Customer-Support-v3/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Session-Activity/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Session-Activity/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Shopping-Cart/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 06/Eclipse/Customer-Support-v4/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 06/Eclipse/User-Profile/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book-i18n/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Customer-Support-v5/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Customer-Support-v6/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Template-Tags/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Compression-Filter/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Customer-Support-v7/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Filter-Async/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Filter-Order/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Filter-Async/web/WEB-INF/jsp/view/nonAsync.jsp: -------------------------------------------------------------------------------- 1 | <% System.out.println("In nonAsync.jsp."); %> 2 | Non-Async JSP 3 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Customer-Support-v8/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Simulated-Cluster/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 11/Eclipse/Customer-Support-v9/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 11/Eclipse/Logging-Integration/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-Hybrid-Config/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-Java-Config/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-XML-Config/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Customer-Support-v10/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Spring-Forms/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 14/Eclipse/Customer-Support-v11/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 14/Eclipse/Discussion-Board/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 14/Eclipse/Discussion-Board/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 15/Eclipse/Customer-Support-v12/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 15/Eclipse/Localized-Application/web/WEB-INF/i18n/errors_es_MX.properties: -------------------------------------------------------------------------------- 1 | bad.food.exception=Comiste comida en mal estado. 2 | -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Localized-Application/web/WEB-INF/i18n/errors_es_MX.properties: -------------------------------------------------------------------------------- 1 | bad.food.exception=Comiste comida en mal estado. 2 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Custom-Constraints/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Customer-Support-v13/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 17/Eclipse/Customer-Support-v14/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 18/Eclipse/AMQP-Messaging/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 18/Eclipse/Publish-Subscribe/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 18/Eclipse/WebSocket-Messaging/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 20/Eclipse/Entity-Mappings/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 20/Eclipse/Enums-Dates-Lobs/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 20/Eclipse/Enums-Dates-Lobs/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 21/Eclipse/Customer-Support-v15/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 22/Eclipse/Customer-Support-v16/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 22/Eclipse/Spring-Data-JPA/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Advanced-Criteria/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Customer-Support-v17/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Search-Engine/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 24/Eclipse/Advanced-Mappings/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 24/Eclipse/Customer-Support-v18/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 26/Eclipse/Authentication-App/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 26/Eclipse/Customer-Support-v19/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 26/IntelliJ/Authentication-App/.idea/sqldialects.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 27/Eclipse/Customer-Support-v20/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 28/Eclipse/Customer-Support-v21/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 28/Eclipse/OAuth-Client/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Customer-Support-v1/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Customer-Support-v2/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Customer-Support-v3/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 06/Eclipse/Customer-Support-v4/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book-i18n/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Customer-Support-v5/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Customer-Support-v6/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Compression-Filter/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Customer-Support-v7/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Customer-Support-v8/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Simulated-Cluster/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 11/Eclipse/Customer-Support-v9/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 11/Eclipse/Logging-Integration/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-Hybrid-Config/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-Java-Config/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-XML-Config/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-One-Context-XML-Config/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Customer-Support-v10/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Model-View-Controller/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Model-View-Controller/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 14/Eclipse/Customer-Support-v11/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 15/Eclipse/Customer-Support-v12/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 15/Eclipse/Localized-Application/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 15/Eclipse/Localized-Application/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Custom-Constraints/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Customer-Support-v13/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 17/Eclipse/Customer-Support-v14/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 18/Eclipse/Publish-Subscribe/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 18/Eclipse/WebSocket-Messaging/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 21/Eclipse/Customer-Support-v15/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 22/Eclipse/Customer-Support-v16/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Advanced-Criteria/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Customer-Support-v17/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 24/Eclipse/Advanced-Mappings/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 24/Eclipse/Customer-Support-v18/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 26/Eclipse/Authentication-App/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 26/Eclipse/Customer-Support-v19/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 27/Eclipse/Customer-Support-v20/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 28/Eclipse/Customer-Support-v21/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-One-Context-XML-Config/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Spring-Forms/web/WEB-INF/jsp/view/user/add.jsp: -------------------------------------------------------------------------------- 1 | 2 | <%@ include file="form.jspf" %> 3 | -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Spring-Forms/web/WEB-INF/jsp/view/user/edit.jsp: -------------------------------------------------------------------------------- 1 | 2 | <%@ include file="form.jspf" %> 3 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Spring-Forms/web/WEB-INF/jsp/view/user/add.jsp: -------------------------------------------------------------------------------- 1 | 2 | <%@ include file="form.jspf" %> 3 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Spring-Forms/web/WEB-INF/jsp/view/user/edit.jsp: -------------------------------------------------------------------------------- 1 | 2 | <%@ include file="form.jspf" %> 3 | -------------------------------------------------------------------------------- /Chapter 02/Sample-Debug-IntelliJ/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Hello-User/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Hello-World/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Shopping-Cart/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/User-Profile/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Template-Tags/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Filter-Async/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Filter-Order/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Game-Site/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-One-Context-XML-Config/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Spring-Forms/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/HR-Portal/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 17/IntelliJ/Web-Service/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Spring-JPA/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Search-Engine/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/OAuth-Client/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-User-JSP/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-World-JSP/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Session-Activity/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book-i18n/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Compression-Filter/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Simulated-Cluster/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Java-Config/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-XML-Config/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 14/IntelliJ/Discussion-Board/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Custom-Constraints/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/AMQP-Messaging/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/Publish-Subscribe/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 20/IntelliJ/Entity-Mappings/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 20/IntelliJ/Enums-Dates-Lobs/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 22/IntelliJ/Spring-Data-JPA/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Advanced-Criteria/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 24/IntelliJ/Advanced-Mappings/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 26/IntelliJ/Authentication-App/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 02/Sample-Debug-IntelliJ/.idea/dictionaries/Nicholas.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Customer-Support-v1/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Customer-Support-v2/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Customer-Support-v3/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/Customer-Support-v4/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Customer-Support-v5/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Template-Tags/web/WEB-INF/jsp/view/hello.jsp: -------------------------------------------------------------------------------- 1 | 2 | Hello, Template! 3 | 4 | -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Customer-Support-v6/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Template-Tags/web/WEB-INF/jsp/view/hello.jsp: -------------------------------------------------------------------------------- 1 | 2 | Hello, Template! 3 | 4 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Customer-Support-v7/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Customer-Support-v8/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Customer-Support-v9/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Logging-Integration/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Hybrid-Config/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Customer-Support-v10/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Model-View-Controller/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 14/IntelliJ/Customer-Support-v11/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Customer-Support-v12/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Localized-Application/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Customer-Support-v13/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 17/IntelliJ/Customer-Support-v14/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/WebSocket-Messaging/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Customer-Support-v15/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 22/IntelliJ/Customer-Support-v16/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Customer-Support-v17/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 24/IntelliJ/Customer-Support-v18/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 26/IntelliJ/Customer-Support-v19/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 27/IntelliJ/Customer-Support-v20/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/Customer-Support-v21/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Hello-User/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Game-Site/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/HR-Portal/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/HR-Portal/source/production/java/com/wrox/site/Gender.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public enum Gender 4 | { 5 | MALE, FEMALE 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/HR-Portal/web/WEB-INF/i18n/messages_en_US.properties: -------------------------------------------------------------------------------- 1 | form.first.name=First Name 2 | form.middle.name=Middle Name 3 | form.last.name=Last Name 4 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/HR-Portal/source/production/java/com/wrox/site/Gender.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public enum Gender 4 | { 5 | MALE, FEMALE 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/HR-Portal/web/WEB-INF/i18n/messages_en_US.properties: -------------------------------------------------------------------------------- 1 | form.first.name=First Name 2 | form.middle.name=Middle Name 3 | form.last.name=Last Name 4 | -------------------------------------------------------------------------------- /Chapter 21/Eclipse/Spring-JPA/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Hello-World/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Hello-User-JSP/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Hello-World-JSP/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Shopping-Cart/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 06/Eclipse/User-Profile/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Template-Tags/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Filter-Async/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Filter-Order/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-One-Context-XML-Config/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Spring-Forms/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 17/Eclipse/Web-Service/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 18/Eclipse/AMQP-Messaging/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 20/Eclipse/Entity-Mappings/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 22/Eclipse/Spring-Data-JPA/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Search-Engine/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 28/Eclipse/OAuth-Client/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 02/Sample-Debug-Eclipse/.settings/org.eclipse.wst.ws.service.policy.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.wst.ws.service.policy.projectEnabled=false 3 | -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Customer-Support-v1/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Customer-Support-v2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Customer-Support-v3/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Session-Activity/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 06/Eclipse/Customer-Support-v4/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book-i18n/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Customer-Support-v5/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Customer-Support-v6/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Compression-Filter/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Customer-Support-v7/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Customer-Support-v8/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Simulated-Cluster/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 11/Eclipse/Customer-Support-v9/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 11/Eclipse/Logging-Integration/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-Hybrid-Config/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-Java-Config/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-XML-Config/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Customer-Support-v10/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 14/Eclipse/Customer-Support-v11/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 14/Eclipse/Discussion-Board/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 15/Eclipse/Customer-Support-v12/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Custom-Constraints/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Custom-Constraints/source/production/java/com/wrox/site/Gender.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public enum Gender 4 | { 5 | MALE, FEMALE 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Customer-Support-v13/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Custom-Constraints/source/production/java/com/wrox/site/Gender.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public enum Gender 4 | { 5 | MALE, FEMALE 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 17/Eclipse/Customer-Support-v14/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 18/Eclipse/Publish-Subscribe/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 18/Eclipse/WebSocket-Messaging/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 20/Eclipse/Enums-Dates-Lobs/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 21/Eclipse/Customer-Support-v15/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 22/Eclipse/Customer-Support-v16/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Advanced-Criteria/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Customer-Support-v17/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 24/Eclipse/Advanced-Mappings/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 24/Eclipse/Customer-Support-v18/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 26/Eclipse/Authentication-App/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 26/Eclipse/Customer-Support-v19/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 27/Eclipse/Customer-Support-v20/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 28/Eclipse/Customer-Support-v21/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Model-View-Controller/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 15/Eclipse/Localized-Application/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Customer-Support-v6/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Customer-Support-v6/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Customer-Support-v7/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Customer-Support-v7/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Customer-Support-v8/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Customer-Support-v8/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 11/Eclipse/Customer-Support-v9/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Customer-Support-v9/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-One-Context-XML-Config/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Chapter 13/Eclipse/Customer-Support-v10/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 14/Eclipse/Customer-Support-v11/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 15/Eclipse/Customer-Support-v12/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Customer-Support-v13/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 17/Eclipse/Customer-Support-v14/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 21/Eclipse/Customer-Support-v15/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 22/Eclipse/Customer-Support-v16/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 23/Eclipse/Customer-Support-v17/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 24/Eclipse/Customer-Support-v18/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 26/Eclipse/Customer-Support-v19/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 27/Eclipse/Customer-Support-v20/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 28/Eclipse/Customer-Support-v21/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 28/Eclipse/OAuth-Client/database/create.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE OAuthClient DEFAULT CHARACTER SET 'utf8' 2 | DEFAULT COLLATE 'utf8_unicode_ci'; 3 | 4 | USE OAuthClient; 5 | 6 | -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/OAuth-Client/database/create.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE OAuthClient DEFAULT CHARACTER SET 'utf8' 2 | DEFAULT COLLATE 'utf8_unicode_ci'; 3 | 4 | USE OAuthClient; 5 | 6 | -------------------------------------------------------------------------------- /Chapter 02/Sample-Debug-Eclipse/.settings/org.eclipse.ltk.core.refactoring.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false 3 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Customer-Support-v10/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 14/IntelliJ/Customer-Support-v11/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Customer-Support-v12/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Customer-Support-v13/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 17/IntelliJ/Customer-Support-v14/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Customer-Support-v15/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 22/IntelliJ/Customer-Support-v16/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Customer-Support-v17/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 24/IntelliJ/Customer-Support-v18/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 26/IntelliJ/Customer-Support-v19/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 27/IntelliJ/Customer-Support-v20/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/Customer-Support-v21/web/resource/stylesheet/login.css: -------------------------------------------------------------------------------- 1 | #bodyTable .sidebarCell { 2 | display: none; 3 | } 4 | 5 | #bodyTable .contentCell { 6 | padding: 0; 7 | } -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Customer-Support-v2/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ page import="com.wrox.Ticket, com.wrox.Attachment" %> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Customer-Support-v2/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ page import="com.wrox.Ticket, com.wrox.Attachment" %> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Customer-Support-v3/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ page import="com.wrox.Ticket, com.wrox.Attachment" %> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Customer-Support-v3/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ page import="com.wrox.Ticket, com.wrox.Attachment" %> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Game-Site/web/resource/image/ticTacToe-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikibook/projavaforwebapps/HEAD/Chapter 10/Eclipse/Game-Site/web/resource/image/ticTacToe-hover.png -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Game-Site/web/resource/image/ticTacToe-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikibook/projavaforwebapps/HEAD/Chapter 10/Eclipse/Game-Site/web/resource/image/ticTacToe-player.png -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Game-Site/web/resource/image/ticTacToe-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikibook/projavaforwebapps/HEAD/Chapter 10/IntelliJ/Game-Site/web/resource/image/ticTacToe-hover.png -------------------------------------------------------------------------------- /Chapter 06/Eclipse/User-Profile/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 3 | -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/User-Profile/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 3 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 3 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 3 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Game-Site/web/resource/image/ticTacToe-opponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikibook/projavaforwebapps/HEAD/Chapter 10/Eclipse/Game-Site/web/resource/image/ticTacToe-opponent.png -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Game-Site/web/resource/image/ticTacToe-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikibook/projavaforwebapps/HEAD/Chapter 10/IntelliJ/Game-Site/web/resource/image/ticTacToe-player.png -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Custom-Constraints/web/WEB-INF/i18n/messages_en_US.properties: -------------------------------------------------------------------------------- 1 | form.first.name=First Name 2 | form.middle.name=Middle Name 3 | form.last.name=Last Name 4 | form.email=Email Address 5 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Custom-Constraints/web/WEB-INF/i18n/messages_en_US.properties: -------------------------------------------------------------------------------- 1 | form.first.name=First Name 2 | form.middle.name=Middle Name 3 | form.last.name=Last Name 4 | form.email=Email Address 5 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Game-Site/web/resource/image/ticTacToe-opponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikibook/projavaforwebapps/HEAD/Chapter 10/IntelliJ/Game-Site/web/resource/image/ticTacToe-opponent.png -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-XML-Config/source/production/java/com/wrox/GreetingService.java: -------------------------------------------------------------------------------- 1 | package com.wrox; 2 | 3 | public interface GreetingService 4 | { 5 | public String getGreeting(String name); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 20/Eclipse/Entity-Mappings/.settings/org.eclipse.jpt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jpt.core.platform=generic2_1 3 | org.eclipse.jpt.jpa.core.discoverAnnotatedClasses=true 4 | -------------------------------------------------------------------------------- /Chapter 20/Eclipse/Enums-Dates-Lobs/.settings/org.eclipse.jpt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jpt.core.platform=generic2_1 3 | org.eclipse.jpt.jpa.core.discoverAnnotatedClasses=true 4 | -------------------------------------------------------------------------------- /Chapter 21/Eclipse/Spring-JPA/source/production/java/com/wrox/site/entities/Gender.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site.entities; 2 | 3 | public enum Gender 4 | { 5 | MALE, 6 | FEMALE, 7 | UNSPECIFIED 8 | } 9 | -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Hello-User/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Hello-World/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Game-Site/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-Hybrid-Config/source/production/java/com/wrox/GreetingService.java: -------------------------------------------------------------------------------- 1 | package com.wrox; 2 | 3 | public interface GreetingService 4 | { 5 | public String getGreeting(String name); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Hybrid-Config/source/production/java/com/wrox/GreetingService.java: -------------------------------------------------------------------------------- 1 | package com.wrox; 2 | 3 | public interface GreetingService 4 | { 5 | public String getGreeting(String name); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-XML-Config/source/production/java/com/wrox/GreetingService.java: -------------------------------------------------------------------------------- 1 | package com.wrox; 2 | 3 | public interface GreetingService 4 | { 5 | public String getGreeting(String name); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/HR-Portal/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 17/IntelliJ/Web-Service/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Spring-JPA/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Spring-JPA/source/production/java/com/wrox/site/entities/Gender.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site.entities; 2 | 3 | public enum Gender 4 | { 5 | MALE, 6 | FEMALE, 7 | UNSPECIFIED 8 | } 9 | -------------------------------------------------------------------------------- /Chapter 22/Eclipse/Spring-Data-JPA/source/production/java/com/wrox/site/entities/Gender.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site.entities; 2 | 3 | public enum Gender 4 | { 5 | MALE, 6 | FEMALE, 7 | UNSPECIFIED 8 | } 9 | -------------------------------------------------------------------------------- /Chapter 02/Sample-Debug-IntelliJ/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-User-JSP/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-World-JSP/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Session-Activity/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Shopping-Cart/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/User-Profile/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Template-Tags/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Filter-Async/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Filter-Order/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Spring-Forms/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 14/IntelliJ/Discussion-Board/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/AMQP-Messaging/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 20/Eclipse/Enums-Dates-Lobs/source/production/java/com/wrox/site/entities/Gender.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site.entities; 2 | 3 | public enum Gender 4 | { 5 | MALE, 6 | FEMALE, 7 | UNSPECIFIED 8 | } 9 | -------------------------------------------------------------------------------- /Chapter 20/IntelliJ/Entity-Mappings/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 20/IntelliJ/Enums-Dates-Lobs/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 20/IntelliJ/Enums-Dates-Lobs/source/production/java/com/wrox/site/entities/Gender.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site.entities; 2 | 3 | public enum Gender 4 | { 5 | MALE, 6 | FEMALE, 7 | UNSPECIFIED 8 | } 9 | -------------------------------------------------------------------------------- /Chapter 22/IntelliJ/Spring-Data-JPA/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 22/IntelliJ/Spring-Data-JPA/source/production/java/com/wrox/site/entities/Gender.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site.entities; 2 | 3 | public enum Gender 4 | { 5 | MALE, 6 | FEMALE, 7 | UNSPECIFIED 8 | } 9 | -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Search-Engine/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/OAuth-Client/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Customer-Support-v1/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Customer-Support-v2/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Customer-Support-v3/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/Customer-Support-v4/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book-i18n/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Customer-Support-v5/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Customer-Support-v6/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Compression-Filter/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Customer-Support-v7/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Customer-Support-v8/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Simulated-Cluster/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Customer-Support-v9/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Logging-Integration/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-Java-Config/source/production/java/com/wrox/site/GreetingService.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public interface GreetingService 4 | { 5 | public String getGreeting(String name); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-One-Context-XML-Config/source/production/java/com/wrox/GreetingService.java: -------------------------------------------------------------------------------- 1 | package com.wrox; 2 | 3 | public interface GreetingService 4 | { 5 | public String getGreeting(String name); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Hybrid-Config/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Java-Config/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Java-Config/source/production/java/com/wrox/site/GreetingService.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public interface GreetingService 4 | { 5 | public String getGreeting(String name); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-One-Context-XML-Config/source/production/java/com/wrox/GreetingService.java: -------------------------------------------------------------------------------- 1 | package com.wrox; 2 | 3 | public interface GreetingService 4 | { 5 | public String getGreeting(String name); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-XML-Config/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Customer-Support-v10/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Model-View-Controller/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 14/Eclipse/Customer-Support-v11/source/production/java/com/wrox/site/UserRepository.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public interface UserRepository 4 | { 5 | String getPasswordForUser(String username); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 14/IntelliJ/Customer-Support-v11/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 15/Eclipse/Customer-Support-v12/source/production/java/com/wrox/site/UserRepository.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public interface UserRepository 4 | { 5 | String getPasswordForUser(String username); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Customer-Support-v12/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Localized-Application/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 16/Eclipse/Customer-Support-v13/source/production/java/com/wrox/site/UserRepository.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public interface UserRepository 4 | { 5 | String getPasswordForUser(String username); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Custom-Constraints/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Customer-Support-v13/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 17/Eclipse/Customer-Support-v14/source/production/java/com/wrox/site/UserRepository.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public interface UserRepository 4 | { 5 | String getPasswordForUser(String username); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 17/IntelliJ/Customer-Support-v14/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/Publish-Subscribe/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/WebSocket-Messaging/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Customer-Support-v15/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 22/IntelliJ/Customer-Support-v16/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Advanced-Criteria/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Customer-Support-v17/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 24/IntelliJ/Advanced-Mappings/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 24/IntelliJ/Customer-Support-v18/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 26/IntelliJ/Authentication-App/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 26/IntelliJ/Customer-Support-v19/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 27/IntelliJ/Customer-Support-v20/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/Customer-Support-v21/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 14/IntelliJ/Customer-Support-v11/source/production/java/com/wrox/site/UserRepository.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public interface UserRepository 4 | { 5 | String getPasswordForUser(String username); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Customer-Support-v12/source/production/java/com/wrox/site/UserRepository.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public interface UserRepository 4 | { 5 | String getPasswordForUser(String username); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Customer-Support-v13/source/production/java/com/wrox/site/UserRepository.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public interface UserRepository 4 | { 5 | String getPasswordForUser(String username); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 17/IntelliJ/Customer-Support-v14/source/production/java/com/wrox/site/UserRepository.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public interface UserRepository 4 | { 5 | String getPasswordForUser(String username); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Hello-User/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Game-Site/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-One-Context-XML-Config/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/HR-Portal/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Spring-JPA/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 02/Sample-Debug-IntelliJ/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Hello-World/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-User-JSP/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Hello-World-JSP/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Shopping-Cart/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/User-Profile/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Template-Tags/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Filter-Async/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Filter-Order/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Spring-Forms/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 17/IntelliJ/Web-Service/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/AMQP-Messaging/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 20/IntelliJ/Entity-Mappings/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 22/IntelliJ/Spring-Data-JPA/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Search-Engine/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/OAuth-Client/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 03/IntelliJ/Customer-Support-v1/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 04/IntelliJ/Customer-Support-v2/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Customer-Support-v3/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 05/IntelliJ/Session-Activity/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/Customer-Support-v4/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book-i18n/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Customer-Support-v5/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 08/IntelliJ/Customer-Support-v6/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Compression-Filter/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Customer-Support-v7/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Customer-Support-v8/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Simulated-Cluster/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Customer-Support-v9/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 11/IntelliJ/Logging-Integration/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Hybrid-Config/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Java-Config/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-XML-Config/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Customer-Support-v10/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 14/IntelliJ/Customer-Support-v11/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 14/IntelliJ/Discussion-Board/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Customer-Support-v12/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Custom-Constraints/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 16/IntelliJ/Customer-Support-v13/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 17/IntelliJ/Customer-Support-v14/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/Publish-Subscribe/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/WebSocket-Messaging/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 20/IntelliJ/Enums-Dates-Lobs/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Customer-Support-v15/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 22/IntelliJ/Customer-Support-v16/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Advanced-Criteria/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 23/IntelliJ/Customer-Support-v17/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 24/IntelliJ/Advanced-Mappings/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 24/IntelliJ/Customer-Support-v18/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 26/IntelliJ/Authentication-App/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 26/IntelliJ/Customer-Support-v19/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 27/IntelliJ/Customer-Support-v20/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/Customer-Support-v21/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 13/IntelliJ/Model-View-Controller/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 15/IntelliJ/Localized-Application/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-One-Context-XML-Config/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 28/Eclipse/Customer-Support-v21/source/production/java/com/wrox/site/OAuthNonceServices.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public interface OAuthNonceServices 4 | { 5 | void recordNonceOrFailIfDuplicate(String nonce, long timestamp); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 28/IntelliJ/Customer-Support-v21/source/production/java/com/wrox/site/OAuthNonceServices.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | public interface OAuthNonceServices 4 | { 5 | void recordNonceOrFailIfDuplicate(String nonce, long timestamp); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Compression-Filter/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Compressed Index Page 5 | 6 | 7 | This content may be compressed. 8 | 9 | 10 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Compression-Filter/web/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Compressed Index Page 5 | 6 | 7 | This content may be compressed. 8 | 9 | 10 | -------------------------------------------------------------------------------- /Chapter 21/Eclipse/Spring-JPA/source/production/java/com/wrox/site/AuthorRepository.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | import com.wrox.site.entities.Author; 4 | 5 | public interface AuthorRepository extends GenericRepository 6 | { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /Chapter 21/IntelliJ/Spring-JPA/source/production/java/com/wrox/site/AuthorRepository.java: -------------------------------------------------------------------------------- 1 | package com.wrox.site; 2 | 3 | import com.wrox.site.entities.Author; 4 | 5 | public interface AuthorRepository extends GenericRepository 6 | { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Hello-User/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Game-Site/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Game-Site/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 18/Eclipse/AMQP-Messaging/web/WEB-INF/jsp/view/logout.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Login 5 | 6 | 7 | ">Login 8 | 9 | 10 | -------------------------------------------------------------------------------- /Chapter 18/Eclipse/Publish-Subscribe/web/WEB-INF/jsp/view/logout.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Login 5 | 6 | 7 | ">Login 8 | 9 | 10 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/AMQP-Messaging/web/WEB-INF/jsp/view/logout.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Login 5 | 6 | 7 | ">Login 8 | 9 | 10 | -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Hello-World/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Hello-User-JSP/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Hello-World-JSP/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Shopping-Cart/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 06/Eclipse/Customer-Support-v4/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ page import="com.wrox.Ticket, com.wrox.Attachment" %> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 06/Eclipse/User-Profile/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 06/IntelliJ/Customer-Support-v4/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ page import="com.wrox.Ticket, com.wrox.Attachment" %> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Customer-Support-v5/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ page import="com.wrox.Ticket, com.wrox.Attachment" %> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Customer-Support-v5/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ page import="com.wrox.Ticket, com.wrox.Attachment" %> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Template-Tags/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Game-Site/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 18/Eclipse/AMQP-Messaging/web/WEB-INF/jsp/view/login.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Login 5 | 6 | 7 | ">Logout 8 | 9 | 10 | -------------------------------------------------------------------------------- /Chapter 18/Eclipse/WebSocket-Messaging/web/WEB-INF/jsp/view/logout.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Login 5 | 6 | 7 | ">Login 8 | 9 | 10 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/AMQP-Messaging/web/WEB-INF/jsp/view/login.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Login 5 | 6 | 7 | ">Logout 8 | 9 | 10 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/Publish-Subscribe/web/WEB-INF/jsp/view/logout.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Login 5 | 6 | 7 | ">Login 8 | 9 | 10 | -------------------------------------------------------------------------------- /Chapter 18/IntelliJ/WebSocket-Messaging/web/WEB-INF/jsp/view/logout.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Login 5 | 6 | 7 | ">Login 8 | 9 | 10 | -------------------------------------------------------------------------------- /Chapter 03/Eclipse/Customer-Support-v1/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 04/Eclipse/Customer-Support-v2/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Customer-Support-v3/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 05/Eclipse/Session-Activity/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 06/Eclipse/Customer-Support-v4/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book-i18n/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Address-Book-i18n/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 07/Eclipse/Customer-Support-v5/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 07/IntelliJ/Address-Book-i18n/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 08/Eclipse/Customer-Support-v6/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 09/Eclipse/Compression-Filter/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 09/IntelliJ/Compression-Filter/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Customer-Support-v8/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Simulated-Cluster/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//source/production/java=UTF-8 3 | encoding//source/production/resources=UTF-8 4 | encoding//source/test/java/unit=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /Chapter 10/Eclipse/Simulated-Cluster/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 10/IntelliJ/Simulated-Cluster/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-Java-Config/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 12/Eclipse/Spring-XML-Config/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-Java-Config/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 12/IntelliJ/Spring-XML-Config/web/WEB-INF/jsp/base.jspf: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 3 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 4 | -------------------------------------------------------------------------------- /Chapter 18/Eclipse/Publish-Subscribe/web/WEB-INF/jsp/view/login.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Login 5 | 6 | 7 | ">Logout 8 | 9 | 10 | -------------------------------------------------------------------------------- /Chapter 18/Eclipse/WebSocket-Messaging/web/WEB-INF/jsp/view/login.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Login 5 | 6 | 7 | ">Logout 8 | 9 | 10 | --------------------------------------------------------------------------------