├── 9781430261513.jpg ├── Chapter10 └── Chapter10 │ ├── converter-multiple-types │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch10 │ │ │ ├── AnotherContact.java │ │ │ ├── Contact.java │ │ │ ├── ContactToAnotherContactConverter.java │ │ │ ├── ConvServExample.java │ │ │ └── StringToDateTimeConverter.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── conv-service-app-context.xml │ ├── converter │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch10 │ │ │ ├── Contact.java │ │ │ ├── ConvServExample.java │ │ │ └── StringToDateTimeConverter.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── conv-service-app-context.xml │ ├── custom-formatter │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch10 │ │ │ ├── ApplicationConversionServiceFactoryBean.java │ │ │ ├── Contact.java │ │ │ └── ConvFormatServExample.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── conv-format-service-app-context.xml │ ├── jsr349-assertTrue │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch10 │ │ │ ├── CheckIndividualCustomer.java │ │ │ ├── Customer.java │ │ │ ├── CustomerType.java │ │ │ ├── Gender.java │ │ │ ├── IndividualCustomerValidator.java │ │ │ ├── Jsr349Sample.java │ │ │ └── MyBeanValidationService.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── jsr349-app-context.xml │ ├── jsr349-custom │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch10 │ │ │ ├── CheckIndividualCustomer.java │ │ │ ├── Customer.java │ │ │ ├── CustomerType.java │ │ │ ├── Gender.java │ │ │ ├── IndividualCustomerValidator.java │ │ │ ├── Jsr349Sample.java │ │ │ └── MyBeanValidationService.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── jsr349-app-context.xml │ ├── jsr349 │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch10 │ │ │ ├── Customer.java │ │ │ ├── CustomerType.java │ │ │ ├── Gender.java │ │ │ ├── Jsr349Sample.java │ │ │ └── MyBeanValidationService.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── jsr349-app-context.xml │ ├── property-editor │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch10 │ │ │ ├── Contact.java │ │ │ ├── DateTimeEditorRegistrar.java │ │ │ └── PropEditorExample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ │ └── prop-editor-app-context.xml │ │ └── application.properties │ └── spring-validator │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch10 │ │ ├── Contact.java │ │ ├── ContactValidator.java │ │ └── SpringValidatorSample.java │ └── resources │ └── META-INF │ ├── MANIFEST.MF │ └── spring │ └── spring-validator-app-context.xml ├── Chapter11 └── Chapter11 │ ├── async-task │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch11 │ │ │ ├── AsyncService.java │ │ │ ├── AsyncServiceImpl.java │ │ │ └── AsyncTaskSample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ │ └── async-app-context.xml │ │ └── log4j.properties │ ├── scheduled-task-annotation │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch11 │ │ │ ├── Car.java │ │ │ ├── CarRepository.java │ │ │ ├── CarService.java │ │ │ ├── CarServiceImpl.java │ │ │ └── ScheduleTaskAnnotationSample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── config │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── spring │ │ │ ├── car-job-app-context.xml │ │ │ └── task-annotation-app-context.xml │ │ └── log4j.properties │ ├── scheduled-task │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch11 │ │ │ ├── Car.java │ │ │ ├── CarRepository.java │ │ │ ├── CarService.java │ │ │ ├── CarServiceImpl.java │ │ │ └── ScheduleTaskSample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── config │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── spring │ │ │ ├── car-job-app-context.xml │ │ │ └── task-namespace-app-context.xml │ │ └── log4j.properties │ └── task-executor │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch11 │ │ ├── TaskExecutorSample.java │ │ └── TaskToExecute.java │ └── resources │ ├── META-INF │ ├── MANIFEST.MF │ └── spring │ │ └── app-context.xml │ └── log4j.properties ├── Chapter12 └── Chapter12 │ ├── amqp-rpc │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch12 │ │ │ ├── AmqpRpcSample.java │ │ │ ├── WeatherService.java │ │ │ └── WeatherServiceImpl.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ │ └── amqp-rpc-app-context.xml │ │ └── log4j.properties │ ├── jms-2.0 │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch12 │ │ │ ├── Jms2Sample.java │ │ │ ├── MessageSender.java │ │ │ ├── SimpleMessageListener.java │ │ │ └── SimpleMessageSender.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ │ ├── jms-listener-app-context.xml │ │ │ └── jms-sender-app-context.xml │ │ └── log4j.properties │ ├── jms │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch12 │ │ │ ├── JmsSample.java │ │ │ ├── MessageSender.java │ │ │ ├── SimpleMessageListener.java │ │ │ └── SimpleMessageSender.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ │ ├── jms-listener-app-context.xml │ │ │ └── jms-sender-app-context.xml │ │ └── log4j.properties │ ├── rest │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch12 │ │ │ ├── Contact.java │ │ │ ├── ContactController.java │ │ │ ├── ContactRepository.java │ │ │ ├── ContactService.java │ │ │ ├── ContactServiceImpl.java │ │ │ ├── Contacts.java │ │ │ ├── CustomCredentialsProvider.java │ │ │ ├── DateTimeFieldHandler.java │ │ │ └── RestfulClientSample.java │ │ ├── resources │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ ├── config │ │ │ │ ├── schema.sql │ │ │ │ └── test-data.sql │ │ │ └── spring │ │ │ │ ├── datasource-tx-jpa.xml │ │ │ │ ├── oxm-mapping.xml │ │ │ │ └── restful-client-app-context.xml │ │ ├── castor.properties │ │ └── log4j.properties │ │ └── webapp │ │ └── WEB-INF │ │ ├── spring │ │ ├── rest-context.xml │ │ ├── root-context.xml │ │ └── web-security.xml │ │ └── web.xml │ └── spring-invoker │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch12 │ │ ├── Contact.java │ │ ├── ContactRepository.java │ │ ├── ContactService.java │ │ ├── ContactServiceImpl.java │ │ └── HttpInvokerClientSample.java │ ├── resources │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── config │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── spring │ │ │ ├── datasource-tx-jpa.xml │ │ │ └── http-invoker-app-context.xml │ └── log4j.properties │ └── webapp │ └── WEB-INF │ ├── spring │ └── root-context.xml │ └── web.xml ├── Chapter13 └── Chapter13 │ ├── integration-test │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── apress │ │ │ │ └── prospring4 │ │ │ │ └── ch13 │ │ │ │ ├── Contact.java │ │ │ │ ├── ContactController.java │ │ │ │ ├── ContactRepository.java │ │ │ │ ├── ContactService.java │ │ │ │ ├── ContactServiceImpl.java │ │ │ │ ├── Contacts.java │ │ │ │ └── DataSets.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ ├── config │ │ │ │ ├── schema.sql │ │ │ │ └── test-data.sql │ │ │ └── spring │ │ │ │ └── datasource-tx-jpa.xml │ │ │ └── log4j.properties │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch13 │ │ │ ├── ContactControllerTest.java │ │ │ ├── ContactServiceImplTest.java │ │ │ ├── ServiceTestConfig.java │ │ │ └── ServiceTestExecutionListener.java │ │ └── resources │ │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch13 │ │ └── ContactServiceImplTest.xls │ └── mvc-unit-testing │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch13 │ │ │ ├── Contact.java │ │ │ ├── ContactController.java │ │ │ ├── ContactService.java │ │ │ └── Contacts.java │ └── resources │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ └── log4j.properties │ └── test │ └── java │ └── com │ └── apress │ └── prospring4 │ └── ch13 │ └── ContactControllerTest.java ├── Chapter14 └── Chapter14 │ ├── groovy-spring │ ├── pom.xml │ ├── rules │ │ └── RuleFactoryImpl.groovy │ └── src │ │ └── main │ │ ├── groovy │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch14 │ │ │ ├── Rule.groovy │ │ │ └── RuleEngineImpl.groovy │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch14 │ │ │ ├── Contact.java │ │ │ ├── ContactService.java │ │ │ ├── ContactServiceImpl.java │ │ │ ├── RuleEngine.java │ │ │ ├── RuleEngineTest.java │ │ │ └── RuleFactory.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context.xml │ ├── javascript │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch14 │ │ │ └── JavaScriptTest.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ └── script-engines │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch14 │ │ └── ListScriptEngines.java │ └── resources │ └── META-INF │ └── MANIFEST.MF ├── Chapter15 └── Chapter15 │ └── jmx │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch15 │ │ ├── AppStatistics.java │ │ ├── AppStatisticsImpl.java │ │ ├── Contact.java │ │ ├── ContactController.java │ │ ├── ContactRepository.java │ │ ├── ContactService.java │ │ ├── ContactServiceImpl.java │ │ ├── Contacts.java │ │ └── DateTimeFieldHandler.java │ ├── resources │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── config │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── spring │ │ │ ├── datasource-tx-jpa.xml │ │ │ └── oxm-mapping.xml │ ├── castor.properties │ └── log4j.properties │ └── webapp │ └── WEB-INF │ ├── spring │ ├── rest-context.xml │ └── root-context.xml │ └── web.xml ├── Chapter16 └── Chapter16 │ └── contact-webapp │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch16 │ │ ├── Contact.java │ │ ├── ContactController.java │ │ ├── ContactGrid.java │ │ ├── ContactRepository.java │ │ ├── ContactService.java │ │ ├── ContactServiceImpl.java │ │ ├── Message.java │ │ ├── MyWebAppInitializer.java │ │ ├── SecurityController.java │ │ └── UrlUtil.java │ ├── resources │ ├── META-INF │ │ ├── spring │ │ │ ├── app-context.xml │ │ │ ├── datasource-tx-jpa.xml │ │ │ └── security-context.xml │ │ └── sql │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ ├── log4j.properties │ └── standard.properties │ └── webapp │ ├── WEB-INF │ ├── i18n │ │ ├── application.properties │ │ ├── application_zh_HK.properties │ │ ├── messages.properties │ │ └── messages_zh_HK.properties │ ├── layouts │ │ ├── default.jspx │ │ └── layouts.xml │ ├── spring │ │ ├── appServlet │ │ │ └── servlet-context.xml │ │ └── root-context.xml │ ├── views │ │ ├── contacts │ │ │ ├── edit.jspx │ │ │ ├── list.jspx │ │ │ ├── show.jspx │ │ │ └── views.xml │ │ ├── footer.jspx │ │ ├── header.jspx │ │ └── menu.jspx │ └── web.xml │ ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ └── icon.png │ │ │ │ └── icon.png │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── scayt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ku.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.js │ ├── samples │ │ ├── ajax.html │ │ ├── api.html │ │ ├── appendto.html │ │ ├── assets │ │ │ ├── inlineall │ │ │ │ └── logo.png │ │ │ ├── outputxhtml │ │ │ │ └── outputxhtml.css │ │ │ ├── posteddata.php │ │ │ ├── sample.css │ │ │ ├── sample.jpg │ │ │ └── uilanguages │ │ │ │ └── languages.js │ │ ├── datafiltering.html │ │ ├── divreplace.html │ │ ├── index.html │ │ ├── inlineall.html │ │ ├── inlinebycode.html │ │ ├── inlinetextarea.html │ │ ├── jquery.html │ │ ├── plugins │ │ │ ├── dialog │ │ │ │ ├── assets │ │ │ │ │ └── my_dialog.js │ │ │ │ └── dialog.html │ │ │ ├── enterkey │ │ │ │ └── enterkey.html │ │ │ ├── htmlwriter │ │ │ │ ├── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ └── swfobject.js │ │ │ │ ├── outputforflash.html │ │ │ │ └── outputhtml.html │ │ │ ├── magicline │ │ │ │ └── magicline.html │ │ │ ├── toolbar │ │ │ │ └── toolbar.html │ │ │ └── wysiwygarea │ │ │ │ └── fullpage.html │ │ ├── readonly.html │ │ ├── replacebyclass.html │ │ ├── replacebycode.html │ │ ├── sample.css │ │ ├── sample.js │ │ ├── sample_posteddata.php │ │ ├── tabindex.html │ │ ├── uicolor.html │ │ ├── uilanguages.html │ │ └── xhtmlstyle.html │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ └── refresh.png │ │ │ └── readme.md │ └── styles.js │ ├── jqgrid │ ├── css │ │ └── ui.jqgrid.css │ ├── js │ │ ├── Changes.txt │ │ ├── i18n │ │ │ ├── grid.locale-ar.js │ │ │ ├── grid.locale-bg.js │ │ │ ├── grid.locale-bg1251.js │ │ │ ├── grid.locale-cat.js │ │ │ ├── grid.locale-cn.js │ │ │ ├── grid.locale-cs.js │ │ │ ├── grid.locale-da.js │ │ │ ├── grid.locale-de.js │ │ │ ├── grid.locale-dk.js │ │ │ ├── grid.locale-el.js │ │ │ ├── grid.locale-en.js │ │ │ ├── grid.locale-es.js │ │ │ ├── grid.locale-fa.js │ │ │ ├── grid.locale-fi.js │ │ │ ├── grid.locale-fr.js │ │ │ ├── grid.locale-gl.js │ │ │ ├── grid.locale-he.js │ │ │ ├── grid.locale-hr.js │ │ │ ├── grid.locale-hr1250.js │ │ │ ├── grid.locale-hu.js │ │ │ ├── grid.locale-id.js │ │ │ ├── grid.locale-is.js │ │ │ ├── grid.locale-it.js │ │ │ ├── grid.locale-ja.js │ │ │ ├── grid.locale-kr.js │ │ │ ├── grid.locale-lt.js │ │ │ ├── grid.locale-mne.js │ │ │ ├── grid.locale-nl.js │ │ │ ├── grid.locale-no.js │ │ │ ├── grid.locale-pl.js │ │ │ ├── grid.locale-pt-br.js │ │ │ ├── grid.locale-pt.js │ │ │ ├── grid.locale-ro.js │ │ │ ├── grid.locale-ru.js │ │ │ ├── grid.locale-sk.js │ │ │ ├── grid.locale-sr-latin.js │ │ │ ├── grid.locale-sr.js │ │ │ ├── grid.locale-sv.js │ │ │ ├── grid.locale-th.js │ │ │ ├── grid.locale-tr.js │ │ │ ├── grid.locale-tw.js │ │ │ ├── grid.locale-ua.js │ │ │ └── grid.locale-vi.js │ │ ├── install.txt │ │ ├── jquery-1.11.0.min.js │ │ ├── jquery.jqGrid.min.js │ │ └── jquery.jqGrid.src.js │ ├── plugins │ │ ├── grid.addons.js │ │ ├── grid.postext.js │ │ ├── grid.setcolumns.js │ │ ├── jquery.contextmenu.js │ │ ├── jquery.searchFilter.js │ │ ├── jquery.tablednd.js │ │ ├── searchFilter.css │ │ ├── ui.multiselect.css │ │ └── ui.multiselect.js │ └── src │ │ ├── JsonXml.js │ │ ├── css │ │ ├── ui.jqgrid.css │ │ └── ui.multiselect.css │ │ ├── grid.base.js │ │ ├── grid.celledit.js │ │ ├── grid.common.js │ │ ├── grid.custom.js │ │ ├── grid.filter.js │ │ ├── grid.formedit.js │ │ ├── grid.grouping.js │ │ ├── grid.import.js │ │ ├── grid.inlinedit.js │ │ ├── grid.jqueryui.js │ │ ├── grid.loader.js │ │ ├── grid.pivot.js │ │ ├── grid.subgrid.js │ │ ├── grid.tbltogrid.js │ │ ├── grid.treegrid.js │ │ ├── i18n │ │ ├── grid.locale-ar.js │ │ ├── grid.locale-bg.js │ │ ├── grid.locale-bg1251.js │ │ ├── grid.locale-cat.js │ │ ├── grid.locale-cn.js │ │ ├── grid.locale-cs.js │ │ ├── grid.locale-da.js │ │ ├── grid.locale-de.js │ │ ├── grid.locale-dk.js │ │ ├── grid.locale-el.js │ │ ├── grid.locale-en.js │ │ ├── grid.locale-es.js │ │ ├── grid.locale-fa.js │ │ ├── grid.locale-fi.js │ │ ├── grid.locale-fr.js │ │ ├── grid.locale-gl.js │ │ ├── grid.locale-he.js │ │ ├── grid.locale-hr.js │ │ ├── grid.locale-hr1250.js │ │ ├── grid.locale-hu.js │ │ ├── grid.locale-id.js │ │ ├── grid.locale-is.js │ │ ├── grid.locale-it.js │ │ ├── grid.locale-ja.js │ │ ├── grid.locale-kr.js │ │ ├── grid.locale-lt.js │ │ ├── grid.locale-mne.js │ │ ├── grid.locale-nl.js │ │ ├── grid.locale-no.js │ │ ├── grid.locale-pl.js │ │ ├── grid.locale-pt-br.js │ │ ├── grid.locale-pt.js │ │ ├── grid.locale-ro.js │ │ ├── grid.locale-ru.js │ │ ├── grid.locale-sk.js │ │ ├── grid.locale-sr-latin.js │ │ ├── grid.locale-sr.js │ │ ├── grid.locale-sv.js │ │ ├── grid.locale-th.js │ │ ├── grid.locale-tr.js │ │ ├── grid.locale-tw.js │ │ ├── grid.locale-ua.js │ │ └── grid.locale-vi.js │ │ ├── jqDnR.js │ │ ├── jqModal.js │ │ ├── jquery.fmatter.js │ │ └── jquery.jqGrid.js │ ├── scripts │ ├── jquery-1.11.1.js │ └── jquery-ui-1.10.4.custom.min.js │ └── styles │ ├── custom-theme │ └── jquery-ui-1.10.4.custom.css │ └── standard.css ├── Chapter17 └── Chapter17 │ ├── sockjs │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch17 │ │ │ └── EchoHandler.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── spring │ │ │ └── root-context.xml │ │ └── web.xml │ │ └── static │ │ └── index.html │ ├── stomp │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch17 │ │ │ ├── Stock.java │ │ │ └── StockController.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── spring │ │ │ └── root-context.xml │ │ └── web.xml │ │ └── static │ │ └── index.html │ └── websocket-api │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch17 │ │ └── EchoHandler.java │ └── webapp │ ├── WEB-INF │ ├── spring │ │ └── root-context.xml │ └── web.xml │ └── static │ └── index.html ├── Chapter18 └── Chapter18 │ ├── batch-jsr352 │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch18 │ │ │ ├── Person.java │ │ │ ├── PersonItemProcessor.java │ │ │ ├── PersonJob.java │ │ │ └── StepExecutionStatsListener.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── batch-jobs │ │ │ └── personJob.xml │ │ └── spring │ │ │ └── jobs │ │ │ └── personJob │ │ │ └── support │ │ │ ├── person.sql │ │ │ └── test-data.csv │ │ └── log4j.properties │ ├── batch │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch18 │ │ │ ├── Person.java │ │ │ ├── PersonItemProcessor.java │ │ │ ├── PersonJob.java │ │ │ └── StepExecutionStatsListener.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ │ └── jobs │ │ │ └── personJob │ │ │ ├── personJob.xml │ │ │ └── support │ │ │ ├── person.sql │ │ │ └── test-data.csv │ │ └── log4j.properties │ ├── boot │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch18 │ │ ├── Application.java │ │ └── HelloWorldController.java │ ├── integration │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch18 │ │ │ ├── FileWatcher.java │ │ │ ├── MessageToJobLauncher.java │ │ │ ├── Person.java │ │ │ ├── PersonItemProcessor.java │ │ │ └── StepExecutionStatsListener.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ │ └── jobs │ │ │ └── personJob │ │ │ ├── personJob.xml │ │ │ └── support │ │ │ ├── person.sql │ │ │ └── test-data.csv │ │ └── log4j.properties │ └── xd │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch18 │ │ └── PersonJobResults.java │ └── resources │ ├── META-INF │ ├── MANIFEST.MF │ └── spring │ │ └── config │ │ └── applicationContext.xml │ ├── data │ └── test-data.csv │ └── log4j.properties ├── Chapter2 └── Chapter2 │ └── hello-world │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch2 │ │ ├── HelloWorld.java │ │ ├── HelloWorldDecoupled.java │ │ ├── HelloWorldDecoupledWithFactory.java │ │ ├── HelloWorldMessageProvider.java │ │ ├── HelloWorldSpringDI.java │ │ ├── HelloWorldWithCommandLine.java │ │ ├── MessageProvider.java │ │ ├── MessageRenderer.java │ │ ├── MessageSupportFactory.java │ │ ├── StandardOutMessageRenderer.java │ │ └── msf.properties │ └── resources │ └── META-INF │ ├── MANIFEST.MF │ └── spring │ └── app-context.xml ├── Chapter3 └── Chapter3 │ ├── bean-aliases │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ └── xml │ │ │ └── BeanNameAliasing.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── bean-autowiring │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ ├── Bar.java │ │ │ ├── Foo.java │ │ │ └── xml │ │ │ └── Target.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── bean-inheritance │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ └── xml │ │ │ └── SimpleBean.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── bean-instantiation-mode │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ ├── NonSingleton.java │ │ │ └── Singleton.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── cdl │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ ├── CDLExample.java │ │ │ ├── Container.java │ │ │ ├── ContextualizedDependencyLookup.java │ │ │ ├── DefaultContainer.java │ │ │ ├── Dependency.java │ │ │ └── ManagedComponent.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── collections │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ ├── ArtworkSender.java │ │ │ ├── FtpArtworkSender.java │ │ │ ├── Oracle.java │ │ │ ├── Recipient.java │ │ │ ├── annotation │ │ │ ├── BookwormOracle.java │ │ │ └── CollectionInjection.java │ │ │ └── xml │ │ │ ├── BookwormOracle.java │ │ │ └── CollectionInjection.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ ├── app-context-annotation.xml │ │ └── app-context-xml.xml │ ├── constructor-injection │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ ├── ConstructorConfusion.java │ │ │ ├── ConstructorInjection.java │ │ │ ├── DeclareSpringComponents.java │ │ │ ├── Dependency.java │ │ │ ├── MessageProvider.java │ │ │ ├── annotation │ │ │ ├── ConfigurableMessageProvider.java │ │ │ └── ConstructorConfusion.java │ │ │ └── xml │ │ │ ├── ConfigurableMessageProvider.java │ │ │ └── ConstructorConfusion.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ ├── app-context-annotation.xml │ │ └── app-context-xml.xml │ ├── dependency-pull │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ ├── DependencyPull.java │ │ │ ├── HelloWorldMessageProvider.java │ │ │ ├── MessageProvider.java │ │ │ ├── MessageRenderer.java │ │ │ └── StandardOutMessageRenderer.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context.xml │ ├── injection │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ ├── BookwormOracle.java │ │ │ ├── Encyclopedia.java │ │ │ ├── Oracle.java │ │ │ └── xml │ │ │ └── InjectRef.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── method-injection │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ ├── AbstractLookupDemoBean.java │ │ │ ├── DemoBean.java │ │ │ ├── LookupDemo.java │ │ │ ├── MyHelper.java │ │ │ └── StandardLookupDemoBean.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── method-replacement │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ ├── FormatMessageReplacer.java │ │ │ ├── MethodReplacementExample.java │ │ │ └── ReplacementTarget.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── nesting │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ ├── HierarchicalAppContextUsage.java │ │ │ └── SimpleTarget.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ ├── app-context-xml.xml │ │ └── parent.xml │ ├── setter-injection │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch3 │ │ │ ├── BookwormOracle.java │ │ │ ├── DeclareSpringComponents.java │ │ │ ├── Dependency.java │ │ │ ├── Encyclopedia.java │ │ │ ├── MessageProvider.java │ │ │ ├── MessageRenderer.java │ │ │ ├── NewsletterSender.java │ │ │ ├── Oracle.java │ │ │ ├── SetterInjection.java │ │ │ ├── XmlConfigWithBeanFactory.java │ │ │ ├── annotation │ │ │ ├── HelloWorldMessageProvider.java │ │ │ └── StandardOutMessageRenderer.java │ │ │ └── xml │ │ │ ├── HelloWorldMessageProvider.java │ │ │ └── StandardOutMessageRenderer.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ ├── app-context-annotation.xml │ │ ├── app-context-xml.xml │ │ └── xml-bean-factory-config.xml │ └── simple-types │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch3 │ │ ├── annotation │ │ ├── InjectSimple.java │ │ ├── InjectSimpleConfig.java │ │ └── InjectSimpleSpel.java │ │ └── xml │ │ ├── InjectSimple.java │ │ ├── InjectSimpleConfig.java │ │ └── InjectSimpleSpel.java │ └── resources │ └── META-INF │ ├── MANIFEST.MF │ └── spring │ ├── app-context-annotation.xml │ └── app-context-xml.xml ├── Chapter4 └── Chapter4 │ ├── accessing-factory-beans │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── AccessingFactoryBeans.java │ │ │ ├── MessageDigestFactoryBean.java │ │ │ └── MessageDigester.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── application-context-aware │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── DestructiveBeanWithInterface.java │ │ │ └── ShutdownHookBean.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-annotation.xml │ ├── bean-init │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ └── SimpleBean.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── bean-name-aware │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── BeanNamePrinter.java │ │ │ └── BeanNamePrinterExample.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── custom-property-editor │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── CustomEditorExample.java │ │ │ ├── Name.java │ │ │ ├── NamePropertyEditor.java │ │ │ └── PropertyEditorBean.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── disposable-bean │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ └── DestructiveBeanWithInterface.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── environment │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ └── EnvironmentSample.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── events │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── MessageEvent.java │ │ │ ├── MessageEventListener.java │ │ │ └── Publisher.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── factory-bean-and-factory-method-attributes │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── MessageDigestFactory.java │ │ │ ├── MessageDigestFactoryExample.java │ │ │ └── MessageDigester.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── factory-bean │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── MessageDigestExample.java │ │ │ ├── MessageDigestFactoryBean.java │ │ │ └── MessageDigester.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── groovy-config-java │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── Contact.java │ │ │ └── GroovyBeansFromJava.java │ │ └── resources │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ └── beans.groovy │ ├── groovy-config │ ├── pom.xml │ └── src │ │ └── main │ │ ├── groovy │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ └── GroovyConfig.groovy │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ └── Contact.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── initializing-bean-destroy │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ └── DestructiveBean.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── initializing-bean │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ └── SimpleBeanWithInterface.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── java-config-message-provider │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── AppConfig.java │ │ │ ├── ConfigurableMessageProvider.java │ │ │ ├── JavaConfigSimpleExample.java │ │ │ ├── MessageProvider.java │ │ │ ├── MessageRenderer.java │ │ │ └── StandardOutMessageRenderer.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ │ └── app-context-xml.xml │ │ └── message.properties │ ├── java-config │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── AppConfig.java │ │ │ ├── ConfigurableMessageProvider.java │ │ │ ├── JavaConfigSimpleExample.java │ │ │ ├── JavaConfigXMLExample.java │ │ │ ├── MessageProvider.java │ │ │ ├── MessageRenderer.java │ │ │ └── StandardOutMessageRenderer.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── jsr330 │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── ConfigurableMessageProvider.java │ │ │ ├── Jsr330Example.java │ │ │ ├── MessageProvider.java │ │ │ ├── MessageRenderer.java │ │ │ └── StandardOutMessageRenderer.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-annotation.xml │ ├── message-source │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ └── MessageSourceDemo.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ │ └── app-context-xml.xml │ │ ├── labels_cs_CZ.properties │ │ └── labels_en.properties │ ├── post-construct-pre-destroy │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ └── DestructiveBeanWithJSR250.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-annotation.xml │ ├── post-construct │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ └── SimpleBeanWithJSR250.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-annotation.xml │ ├── profiles │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── Food.java │ │ │ ├── FoodProviderService.java │ │ │ ├── ProfileXmlConfigExample.java │ │ │ ├── highschool │ │ │ └── FoodProviderServiceImpl.java │ │ │ └── kindergarten │ │ │ └── FoodProviderServiceImpl.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ ├── highschool-config.xml │ │ └── kindergarten-config.xml │ ├── property-editors │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ └── PropertyEditorBean.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ │ └── app-context-xml.xml │ │ └── test.txt │ ├── property-placeholder │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ ├── AppProperty.java │ │ │ └── PlaceHolderSample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ │ └── app-context-xml.xml │ │ └── application.properties │ ├── resource │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch4 │ │ │ └── ResourceDemo.java │ │ └── resources │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ └── test.txt │ └── shutdown-hook │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch4 │ │ └── DestructiveBeanWithInterface.java │ └── resources │ └── META-INF │ ├── MANIFEST.MF │ └── spring │ └── app-context-annotation.xml ├── Chapter5 └── Chapter5 │ ├── after-returning-advice-keygen │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── AfterAdviceExample.java │ │ │ ├── KeyGenerator.java │ │ │ └── WeakKeyCheckAdvice.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── annotation-pointcut │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── AdviceRequired.java │ │ │ ├── AnnotationPointcutExample.java │ │ │ ├── SampleAnnotationBean.java │ │ │ └── SimpleAdvice.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── aop-namespace │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── AopNamespaceExample.java │ │ │ ├── MyAdvice.java │ │ │ ├── MyBean.java │ │ │ └── MyDependency.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── aspectj-annotations │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── AspectJAnnotationExample.java │ │ │ ├── MyAdvice.java │ │ │ ├── MyBean.java │ │ │ └── MyDependency.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── aspectj-aspects │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── AspectJExample.java │ │ │ ├── MessageWrapper.aj │ │ │ └── MessageWriter.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── aspectj-regex-pointcuts │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── AspectjexpBean.java │ │ │ ├── AspectjexpPointcutExample.java │ │ │ └── SimpleAdvice.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── cflow-pointcuts │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── ControlFlowExample.java │ │ │ ├── SimpleBeforeAdvice.java │ │ │ └── TestBean.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── cglib-performance │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── DefaultSimpleBean.java │ │ │ ├── NoOpBeforeAdvice.java │ │ │ ├── ProxyPerfTest.java │ │ │ ├── SimpleBean.java │ │ │ └── TestPointcut.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── composable-pointcut │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── ComposablePointcutExample.java │ │ │ ├── SampleBean.java │ │ │ └── SimpleBeforeAdvice.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── dynamic-pointcut │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── DynamicPointcutExample.java │ │ │ ├── SampleBean.java │ │ │ ├── SimpleAdvice.java │ │ │ └── SimpleDynamicPointcut.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── hello-world │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── HelloWorldAOPExample.java │ │ │ ├── MessageDecorator.java │ │ │ └── MessageWriter.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── modification-introduction │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── IntroductionExample.java │ │ │ ├── IsModified.java │ │ │ ├── IsModifiedAdvisor.java │ │ │ ├── IsModifiedMixin.java │ │ │ └── TargetBean.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── proxyfactorybean-introduction │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── IntroductionConfigExample.java │ │ │ ├── IsModified.java │ │ │ ├── IsModifiedAdvisor.java │ │ │ ├── IsModifiedMixin.java │ │ │ └── TargetBean.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── proxyfactorybean │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── MyAdvice.java │ │ │ ├── MyBean.java │ │ │ ├── MyDependency.java │ │ │ └── ProxyFactoryBeanExample.java │ │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── spring │ │ └── app-context-xml.xml │ ├── regex-pointcuts │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── RegexpBean.java │ │ │ ├── RegexpPointcutExample.java │ │ │ └── SimpleAdvice.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── security │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── SecureBean.java │ │ │ ├── SecurityAdvice.java │ │ │ ├── SecurityExample.java │ │ │ ├── SecurityManager.java │ │ │ └── UserInfo.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── simple-after-returning-advice │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── MessageWriter.java │ │ │ └── SimpleAfterReturningAdvice.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── simple-around-advice │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── ProfilingExample.java │ │ │ ├── ProfilingInterceptor.java │ │ │ └── WorkerBean.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── simple-before-advice │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── MessageWriter.java │ │ │ └── SimpleBeforeAdvice.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── simple-name-matching │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── NameBean.java │ │ │ ├── NamePointcutExample.java │ │ │ └── SimpleAdvice.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── simple-throws-advice │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch5 │ │ │ ├── ErrorBean.java │ │ │ └── SimpleThrowsAdvice.java │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ └── static-pointcut │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch5 │ │ ├── BeanOne.java │ │ ├── BeanTwo.java │ │ ├── SimpleAdvice.java │ │ ├── SimpleStaticPointcut.java │ │ └── StaticPointcutExample.java │ └── resources │ └── META-INF │ └── MANIFEST.MF ├── Chapter6 └── Chapter6 │ ├── plain-jdbc │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch6 │ │ │ ├── Contact.java │ │ │ ├── ContactDao.java │ │ │ ├── PlainContactDao.java │ │ │ └── PlainJdbcSample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── sql │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── log4j.properties │ ├── spring-jdbc-annotations-lambda │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch6 │ │ │ ├── AnnotationJdbcDaoSample.java │ │ │ ├── Contact.java │ │ │ ├── ContactDao.java │ │ │ ├── ContactTelDetail.java │ │ │ ├── InsertContact.java │ │ │ ├── InsertContactTelDetail.java │ │ │ ├── JdbcContactDao.java │ │ │ ├── SelectAllContacts.java │ │ │ ├── SelectContactByFirstName.java │ │ │ ├── StoredFunctionFirstNameById.java │ │ │ └── UpdateContact.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── config │ │ │ └── jdbc.properties │ │ ├── spring │ │ │ ├── app-context-annotation.xml │ │ │ └── datasource-dbcp.xml │ │ └── sql │ │ │ ├── schema.sql │ │ │ ├── stored-function.sql │ │ │ └── test-data.sql │ │ └── log4j.properties │ ├── spring-jdbc-annotations │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch6 │ │ │ ├── AnnotationJdbcDaoSample.java │ │ │ ├── Contact.java │ │ │ ├── ContactDao.java │ │ │ ├── ContactTelDetail.java │ │ │ ├── InsertContact.java │ │ │ ├── InsertContactTelDetail.java │ │ │ ├── JdbcContactDao.java │ │ │ ├── SelectAllContacts.java │ │ │ ├── SelectContactByFirstName.java │ │ │ ├── StoredFunctionFirstNameById.java │ │ │ └── UpdateContact.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── config │ │ │ └── jdbc.properties │ │ ├── spring │ │ │ ├── app-context-annotation.xml │ │ │ └── datasource-dbcp.xml │ │ └── sql │ │ │ ├── schema.sql │ │ │ ├── stored-function.sql │ │ │ └── test-data.sql │ │ └── log4j.properties │ ├── spring-jdbc-embedded │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch6 │ │ │ ├── ContactDao.java │ │ │ ├── JdbcContactDao.java │ │ │ ├── JdbcContactDaoSample.java │ │ │ └── MySQLErrorCodesTranslator.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── spring │ │ │ └── app-context-xml.xml │ │ └── sql │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── log4j.properties │ ├── spring-jdbc-namedparam │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch6 │ │ │ ├── ContactDao.java │ │ │ ├── JdbcContactDao.java │ │ │ └── JdbcContactDaoSample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── spring │ │ │ └── app-context-xml.xml │ │ └── sql │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── log4j.properties │ ├── spring-jdbc-resultsetextractor-lambda │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch6 │ │ │ ├── Contact.java │ │ │ ├── ContactDao.java │ │ │ ├── ContactTelDetail.java │ │ │ ├── JdbcContactDao.java │ │ │ └── JdbcContactDaoSample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── spring │ │ │ └── app-context-xml.xml │ │ └── sql │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── log4j.properties │ ├── spring-jdbc-resultsetextractor │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch6 │ │ │ ├── Contact.java │ │ │ ├── ContactDao.java │ │ │ ├── ContactTelDetail.java │ │ │ ├── JdbcContactDao.java │ │ │ └── JdbcContactDaoSample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── spring │ │ │ └── app-context-xml.xml │ │ └── sql │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── log4j.properties │ ├── spring-jdbc-rowmapper-lambda │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch6 │ │ │ ├── Contact.java │ │ │ ├── ContactDao.java │ │ │ ├── ContactTelDetail.java │ │ │ ├── JdbcContactDao.java │ │ │ └── JdbcContactDaoSample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── spring │ │ │ └── app-context-xml.xml │ │ └── sql │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── log4j.properties │ └── spring-jdbc-rowmapper │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch6 │ │ ├── Contact.java │ │ ├── ContactDao.java │ │ ├── ContactTelDetail.java │ │ ├── JdbcContactDao.java │ │ └── JdbcContactDaoSample.java │ └── resources │ ├── META-INF │ ├── MANIFEST.MF │ ├── spring │ │ └── app-context-xml.xml │ └── sql │ │ ├── schema.sql │ │ └── test-data.sql │ └── log4j.properties ├── Chapter7 └── Chapter7 │ └── hibernate-crud │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch7 │ │ ├── Contact.java │ │ ├── ContactDao.java │ │ ├── ContactDaoImpl.java │ │ ├── ContactTelDetail.java │ │ ├── Hobby.java │ │ └── SpringHibernateSample.java │ └── resources │ ├── META-INF │ ├── MANIFEST.MF │ ├── spring │ │ └── app-context-annotation.xml │ └── sql │ │ ├── schema.sql │ │ └── test-data.sql │ └── log4j.properties ├── Chapter8 └── Chapter8 │ ├── hibernate-envers │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch8 │ │ │ ├── AuditorAwareBean.java │ │ │ ├── ContactAudit.java │ │ │ ├── ContactAuditRepository.java │ │ │ ├── ContactAuditService.java │ │ │ ├── ContactAuditServiceImpl.java │ │ │ └── SpringJPASample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── spring │ │ │ └── app-context-annotation.xml │ │ └── sql │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── log4j.properties │ ├── jpa-criteria │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch8 │ │ │ ├── Contact.java │ │ │ ├── ContactService.java │ │ │ ├── ContactServiceImpl.java │ │ │ ├── ContactTelDetail.java │ │ │ ├── Hobby.java │ │ │ └── SpringJPASample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── spring │ │ │ └── app-context-annotation.xml │ │ └── sql │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── log4j.properties │ ├── jpa-crud │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch8 │ │ │ ├── Contact.java │ │ │ ├── ContactService.java │ │ │ ├── ContactServiceImpl.java │ │ │ ├── ContactSummary.java │ │ │ ├── ContactSummaryService.java │ │ │ ├── ContactSummaryServiceImpl.java │ │ │ ├── ContactSummaryUntypeImpl.java │ │ │ ├── ContactTelDetail.java │ │ │ ├── Hobby.java │ │ │ └── SpringJPASample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── spring │ │ │ └── app-context-annotation.xml │ │ └── sql │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── log4j.properties │ ├── spring-data-jpa-audit │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch8 │ │ │ ├── AuditorAwareBean.java │ │ │ ├── ContactAudit.java │ │ │ ├── ContactAuditRepository.java │ │ │ ├── ContactAuditService.java │ │ │ ├── ContactAuditServiceImpl.java │ │ │ └── SpringJPASample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── orm.xml │ │ ├── spring │ │ │ └── app-context-annotation.xml │ │ └── sql │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── log4j.properties │ └── spring-data-jpa │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch8 │ │ ├── Contact.java │ │ ├── ContactRepository.java │ │ ├── ContactService.java │ │ ├── ContactServiceImpl.java │ │ ├── ContactTelDetail.java │ │ ├── Hobby.java │ │ └── SpringJPASample.java │ └── resources │ ├── META-INF │ ├── MANIFEST.MF │ ├── spring │ │ └── app-context-annotation.xml │ └── sql │ │ ├── schema.sql │ │ └── test-data.sql │ └── log4j.properties ├── Chapter9 └── Chapter9 │ ├── transactions-annotation │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch9 │ │ │ ├── Contact.java │ │ │ ├── ContactRepository.java │ │ │ ├── ContactService.java │ │ │ ├── ContactServiceImpl.java │ │ │ └── TxAnnotationSample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── config │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── spring │ │ │ └── tx-annotation-app-context.xml │ │ └── log4j.properties │ ├── transactions-jta │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch9 │ │ │ ├── Contact.java │ │ │ ├── ContactRepository.java │ │ │ ├── ContactService.java │ │ │ ├── ContactServiceImpl.java │ │ │ └── TxJtaSample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── config │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── spring │ │ │ └── tx-jta-app-context.xml │ │ └── log4j.properties │ ├── transactions-programatic │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── apress │ │ │ └── prospring4 │ │ │ └── ch9 │ │ │ ├── Contact.java │ │ │ ├── ContactRepository.java │ │ │ ├── ContactService.java │ │ │ ├── ContactServiceImpl.java │ │ │ └── TxProgrammaticSample.java │ │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── config │ │ │ ├── schema.sql │ │ │ └── test-data.sql │ │ └── spring │ │ │ └── tx-programmatic-app-context.xml │ │ └── log4j.properties │ └── transactions-xml │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── apress │ │ └── prospring4 │ │ └── ch9 │ │ ├── Contact.java │ │ ├── ContactRepository.java │ │ ├── ContactService.java │ │ ├── ContactServiceImpl.java │ │ └── TxDeclarativeSample.java │ └── resources │ ├── META-INF │ ├── MANIFEST.MF │ ├── config │ │ ├── schema.sql │ │ └── test-data.sql │ └── spring │ │ └── tx-declarative-app-context.xml │ └── log4j.properties ├── LICENSE.txt ├── README.md └── contributing.md /9781430261513.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/9781430261513.jpg -------------------------------------------------------------------------------- /Chapter10/Chapter10/converter-multiple-types/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/converter-multiple-types/pom.xml -------------------------------------------------------------------------------- /Chapter10/Chapter10/converter-multiple-types/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Chapter10/converter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/converter/pom.xml -------------------------------------------------------------------------------- /Chapter10/Chapter10/converter/src/main/java/com/apress/prospring4/ch10/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/converter/src/main/java/com/apress/prospring4/ch10/Contact.java -------------------------------------------------------------------------------- /Chapter10/Chapter10/converter/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Chapter10/custom-formatter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/custom-formatter/pom.xml -------------------------------------------------------------------------------- /Chapter10/Chapter10/custom-formatter/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349-assertTrue/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/jsr349-assertTrue/pom.xml -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349-assertTrue/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349-custom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/jsr349-custom/pom.xml -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349-custom/src/main/java/com/apress/prospring4/ch10/Customer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/jsr349-custom/src/main/java/com/apress/prospring4/ch10/Customer.java -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349-custom/src/main/java/com/apress/prospring4/ch10/Gender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/jsr349-custom/src/main/java/com/apress/prospring4/ch10/Gender.java -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349-custom/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/jsr349/pom.xml -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349/src/main/java/com/apress/prospring4/ch10/Customer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/jsr349/src/main/java/com/apress/prospring4/ch10/Customer.java -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349/src/main/java/com/apress/prospring4/ch10/CustomerType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/jsr349/src/main/java/com/apress/prospring4/ch10/CustomerType.java -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349/src/main/java/com/apress/prospring4/ch10/Gender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/jsr349/src/main/java/com/apress/prospring4/ch10/Gender.java -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349/src/main/java/com/apress/prospring4/ch10/Jsr349Sample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/jsr349/src/main/java/com/apress/prospring4/ch10/Jsr349Sample.java -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Chapter10/jsr349/src/main/resources/META-INF/spring/jsr349-app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/jsr349/src/main/resources/META-INF/spring/jsr349-app-context.xml -------------------------------------------------------------------------------- /Chapter10/Chapter10/property-editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/property-editor/pom.xml -------------------------------------------------------------------------------- /Chapter10/Chapter10/property-editor/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Chapter10/property-editor/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/property-editor/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter10/Chapter10/spring-validator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter10/Chapter10/spring-validator/pom.xml -------------------------------------------------------------------------------- /Chapter10/Chapter10/spring-validator/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/Chapter11/async-task/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/async-task/pom.xml -------------------------------------------------------------------------------- /Chapter11/Chapter11/async-task/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/Chapter11/async-task/src/main/resources/META-INF/spring/async-app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/async-task/src/main/resources/META-INF/spring/async-app-context.xml -------------------------------------------------------------------------------- /Chapter11/Chapter11/async-task/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/async-task/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter11/Chapter11/scheduled-task-annotation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/scheduled-task-annotation/pom.xml -------------------------------------------------------------------------------- /Chapter11/Chapter11/scheduled-task-annotation/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/Chapter11/scheduled-task-annotation/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/scheduled-task-annotation/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter11/Chapter11/scheduled-task/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/scheduled-task/pom.xml -------------------------------------------------------------------------------- /Chapter11/Chapter11/scheduled-task/src/main/java/com/apress/prospring4/ch11/Car.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/scheduled-task/src/main/java/com/apress/prospring4/ch11/Car.java -------------------------------------------------------------------------------- /Chapter11/Chapter11/scheduled-task/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/Chapter11/scheduled-task/src/main/resources/META-INF/config/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/scheduled-task/src/main/resources/META-INF/config/schema.sql -------------------------------------------------------------------------------- /Chapter11/Chapter11/scheduled-task/src/main/resources/META-INF/config/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/scheduled-task/src/main/resources/META-INF/config/test-data.sql -------------------------------------------------------------------------------- /Chapter11/Chapter11/scheduled-task/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/scheduled-task/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter11/Chapter11/task-executor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/task-executor/pom.xml -------------------------------------------------------------------------------- /Chapter11/Chapter11/task-executor/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/Chapter11/task-executor/src/main/resources/META-INF/spring/app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/task-executor/src/main/resources/META-INF/spring/app-context.xml -------------------------------------------------------------------------------- /Chapter11/Chapter11/task-executor/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter11/Chapter11/task-executor/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter12/Chapter12/amqp-rpc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/amqp-rpc/pom.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/amqp-rpc/src/main/java/com/apress/prospring4/ch12/AmqpRpcSample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/amqp-rpc/src/main/java/com/apress/prospring4/ch12/AmqpRpcSample.java -------------------------------------------------------------------------------- /Chapter12/Chapter12/amqp-rpc/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Chapter12/amqp-rpc/src/main/resources/META-INF/spring/amqp-rpc-app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/amqp-rpc/src/main/resources/META-INF/spring/amqp-rpc-app-context.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/amqp-rpc/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/amqp-rpc/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter12/Chapter12/jms-2.0/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/jms-2.0/pom.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/jms-2.0/src/main/java/com/apress/prospring4/ch12/Jms2Sample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/jms-2.0/src/main/java/com/apress/prospring4/ch12/Jms2Sample.java -------------------------------------------------------------------------------- /Chapter12/Chapter12/jms-2.0/src/main/java/com/apress/prospring4/ch12/MessageSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/jms-2.0/src/main/java/com/apress/prospring4/ch12/MessageSender.java -------------------------------------------------------------------------------- /Chapter12/Chapter12/jms-2.0/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Chapter12/jms-2.0/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/jms-2.0/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter12/Chapter12/jms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/jms/pom.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/jms/src/main/java/com/apress/prospring4/ch12/JmsSample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/jms/src/main/java/com/apress/prospring4/ch12/JmsSample.java -------------------------------------------------------------------------------- /Chapter12/Chapter12/jms/src/main/java/com/apress/prospring4/ch12/MessageSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/jms/src/main/java/com/apress/prospring4/ch12/MessageSender.java -------------------------------------------------------------------------------- /Chapter12/Chapter12/jms/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Chapter12/jms/src/main/resources/META-INF/spring/jms-listener-app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/jms/src/main/resources/META-INF/spring/jms-listener-app-context.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/jms/src/main/resources/META-INF/spring/jms-sender-app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/jms/src/main/resources/META-INF/spring/jms-sender-app-context.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/jms/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/jms/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/pom.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/java/com/apress/prospring4/ch12/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/java/com/apress/prospring4/ch12/Contact.java -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/java/com/apress/prospring4/ch12/ContactController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/java/com/apress/prospring4/ch12/ContactController.java -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/java/com/apress/prospring4/ch12/ContactRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/java/com/apress/prospring4/ch12/ContactRepository.java -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/java/com/apress/prospring4/ch12/ContactService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/java/com/apress/prospring4/ch12/ContactService.java -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/java/com/apress/prospring4/ch12/Contacts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/java/com/apress/prospring4/ch12/Contacts.java -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/resources/META-INF/config/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/resources/META-INF/config/schema.sql -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/resources/META-INF/config/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/resources/META-INF/config/test-data.sql -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/resources/META-INF/spring/datasource-tx-jpa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/resources/META-INF/spring/datasource-tx-jpa.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/resources/META-INF/spring/oxm-mapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/resources/META-INF/spring/oxm-mapping.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/resources/castor.properties: -------------------------------------------------------------------------------- 1 | org.exolab.castor.indent=true 2 | -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/webapp/WEB-INF/spring/rest-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/webapp/WEB-INF/spring/rest-context.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/webapp/WEB-INF/spring/root-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/webapp/WEB-INF/spring/root-context.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/webapp/WEB-INF/spring/web-security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/webapp/WEB-INF/spring/web-security.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/rest/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/rest/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/spring-invoker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/spring-invoker/pom.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/spring-invoker/src/main/java/com/apress/prospring4/ch12/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/spring-invoker/src/main/java/com/apress/prospring4/ch12/Contact.java -------------------------------------------------------------------------------- /Chapter12/Chapter12/spring-invoker/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Chapter12/spring-invoker/src/main/resources/META-INF/config/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/spring-invoker/src/main/resources/META-INF/config/schema.sql -------------------------------------------------------------------------------- /Chapter12/Chapter12/spring-invoker/src/main/resources/META-INF/config/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/spring-invoker/src/main/resources/META-INF/config/test-data.sql -------------------------------------------------------------------------------- /Chapter12/Chapter12/spring-invoker/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/spring-invoker/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter12/Chapter12/spring-invoker/src/main/webapp/WEB-INF/spring/root-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/spring-invoker/src/main/webapp/WEB-INF/spring/root-context.xml -------------------------------------------------------------------------------- /Chapter12/Chapter12/spring-invoker/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter12/Chapter12/spring-invoker/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter13/Chapter13/integration-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter13/Chapter13/integration-test/pom.xml -------------------------------------------------------------------------------- /Chapter13/Chapter13/integration-test/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/Chapter13/integration-test/src/main/resources/META-INF/config/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter13/Chapter13/integration-test/src/main/resources/META-INF/config/schema.sql -------------------------------------------------------------------------------- /Chapter13/Chapter13/integration-test/src/main/resources/META-INF/config/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter13/Chapter13/integration-test/src/main/resources/META-INF/config/test-data.sql -------------------------------------------------------------------------------- /Chapter13/Chapter13/integration-test/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter13/Chapter13/integration-test/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter13/Chapter13/mvc-unit-testing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter13/Chapter13/mvc-unit-testing/pom.xml -------------------------------------------------------------------------------- /Chapter13/Chapter13/mvc-unit-testing/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/Chapter13/mvc-unit-testing/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter13/Chapter13/mvc-unit-testing/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter14/Chapter14/groovy-spring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter14/Chapter14/groovy-spring/pom.xml -------------------------------------------------------------------------------- /Chapter14/Chapter14/groovy-spring/rules/RuleFactoryImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter14/Chapter14/groovy-spring/rules/RuleFactoryImpl.groovy -------------------------------------------------------------------------------- /Chapter14/Chapter14/groovy-spring/src/main/groovy/com/apress/prospring4/ch14/Rule.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter14/Chapter14/groovy-spring/src/main/groovy/com/apress/prospring4/ch14/Rule.groovy -------------------------------------------------------------------------------- /Chapter14/Chapter14/groovy-spring/src/main/java/com/apress/prospring4/ch14/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter14/Chapter14/groovy-spring/src/main/java/com/apress/prospring4/ch14/Contact.java -------------------------------------------------------------------------------- /Chapter14/Chapter14/groovy-spring/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter14/Chapter14/groovy-spring/src/main/resources/META-INF/spring/app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter14/Chapter14/groovy-spring/src/main/resources/META-INF/spring/app-context.xml -------------------------------------------------------------------------------- /Chapter14/Chapter14/javascript/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter14/Chapter14/javascript/pom.xml -------------------------------------------------------------------------------- /Chapter14/Chapter14/javascript/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter14/Chapter14/script-engines/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter14/Chapter14/script-engines/pom.xml -------------------------------------------------------------------------------- /Chapter14/Chapter14/script-engines/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/pom.xml -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/AppStatistics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/AppStatistics.java -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/AppStatisticsImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/AppStatisticsImpl.java -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/Contact.java -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/ContactController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/ContactController.java -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/ContactRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/ContactRepository.java -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/ContactService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/ContactService.java -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/ContactServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/ContactServiceImpl.java -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/Contacts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/java/com/apress/prospring4/ch15/Contacts.java -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/resources/META-INF/config/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/resources/META-INF/config/schema.sql -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/resources/META-INF/config/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/resources/META-INF/config/test-data.sql -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/resources/META-INF/spring/datasource-tx-jpa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/resources/META-INF/spring/datasource-tx-jpa.xml -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/resources/META-INF/spring/oxm-mapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/resources/META-INF/spring/oxm-mapping.xml -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/resources/castor.properties: -------------------------------------------------------------------------------- 1 | org.exolab.castor.indent=true 2 | -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/webapp/WEB-INF/spring/rest-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/webapp/WEB-INF/spring/rest-context.xml -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/webapp/WEB-INF/spring/root-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/webapp/WEB-INF/spring/root-context.xml -------------------------------------------------------------------------------- /Chapter15/Chapter15/jmx/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter15/Chapter15/jmx/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/pom.xml -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/java/com/apress/prospring4/ch16/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/java/com/apress/prospring4/ch16/Contact.java -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/java/com/apress/prospring4/ch16/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/java/com/apress/prospring4/ch16/Message.java -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/java/com/apress/prospring4/ch16/UrlUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/java/com/apress/prospring4/ch16/UrlUtil.java -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/resources/META-INF/spring/app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/resources/META-INF/spring/app-context.xml -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/resources/META-INF/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/resources/META-INF/sql/schema.sql -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/resources/META-INF/sql/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/resources/META-INF/sql/test-data.sql -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/resources/standard.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/resources/standard.properties -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/i18n/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/i18n/application.properties -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/i18n/messages.properties -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/layouts/default.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/layouts/default.jspx -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/layouts/layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/layouts/layouts.xml -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/spring/root-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/spring/root-context.xml -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/contacts/edit.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/contacts/edit.jspx -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/contacts/list.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/contacts/list.jspx -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/contacts/show.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/contacts/show.jspx -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/contacts/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/contacts/views.xml -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/footer.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/footer.jspx -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/header.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/header.jspx -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/menu.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/views/menu.jspx -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/README.md -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/build-config.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/config.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/contents.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/af.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/da.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/de.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/el.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/en.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/es.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/et.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/he.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/id.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/is.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/it.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/km.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/no.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/si.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/th.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/link/dialogs/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/link/dialogs/link.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/scayt/LICENSE.md -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/scayt/README.md -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/wsc/LICENSE.md -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/wsc/README.md -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/wsc/dialogs/wsc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/wsc/dialogs/wsc.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/wsc/dialogs/wsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/plugins/wsc/dialogs/wsc.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/ajax.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/api.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/appendto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/appendto.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/assets/sample.jpg -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/datafiltering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/datafiltering.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/divreplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/divreplace.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/index.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/inlineall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/inlineall.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/inlinebycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/inlinebycode.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/inlinetextarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/inlinetextarea.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/jquery.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/readonly.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/replacebyclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/replacebyclass.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/replacebycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/replacebycode.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/sample.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/sample.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/tabindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/tabindex.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/uicolor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/uicolor.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/uilanguages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/uilanguages.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/xhtmlstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/samples/xhtmlstyle.html -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/dialog.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/dialog_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/dialog_ie.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/dialog_ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/dialog_ie7.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/dialog_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/dialog_ie8.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/editor.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/editor_gecko.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/editor_gecko.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/editor_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/editor_ie.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/editor_ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/editor_ie7.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/editor_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/editor_ie8.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/skins/moono/readme.md -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/ckeditor/styles.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/css/ui.jqgrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/css/ui.jqgrid.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/Changes.txt -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-ar.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-bg.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-bg1251.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-bg1251.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-cat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-cat.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-cn.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-cs.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-da.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-de.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-dk.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-el.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-en.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-es.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-fa.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-fi.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-fr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-gl.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-he.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-hr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-hr1250.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-hr1250.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-hu.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-id.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-is.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-it.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-ja.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-kr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-lt.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-mne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-mne.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-nl.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-no.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-pl.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-pt-br.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-pt.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-ro.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-ru.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-sk.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-sr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-sv.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-th.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-tr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-tw.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-ua.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/i18n/grid.locale-vi.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/install.txt -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/jquery-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/jquery-1.11.0.min.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/jquery.jqGrid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/jquery.jqGrid.min.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/jquery.jqGrid.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/js/jquery.jqGrid.src.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/grid.addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/grid.addons.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/grid.postext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/grid.postext.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/grid.setcolumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/grid.setcolumns.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/jquery.contextmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/jquery.contextmenu.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/jquery.searchFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/jquery.searchFilter.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/jquery.tablednd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/jquery.tablednd.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/searchFilter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/searchFilter.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/ui.multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/ui.multiselect.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/ui.multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/plugins/ui.multiselect.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/JsonXml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/JsonXml.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/css/ui.jqgrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/css/ui.jqgrid.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/css/ui.multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/css/ui.multiselect.css -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.base.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.celledit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.celledit.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.common.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.custom.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.filter.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.formedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.formedit.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.grouping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.grouping.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.import.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.inlinedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.inlinedit.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.jqueryui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.jqueryui.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.loader.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.pivot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.pivot.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.subgrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.subgrid.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.tbltogrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.tbltogrid.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.treegrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/grid.treegrid.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-ar.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-bg.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-bg1251.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-bg1251.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-cat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-cat.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-cn.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-cs.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-da.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-de.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-dk.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-el.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-en.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-es.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-fa.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-fi.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-fr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-gl.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-he.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-hr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-hr1250.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-hr1250.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-hu.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-id.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-is.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-it.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-ja.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-kr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-lt.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-mne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-mne.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-nl.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-no.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-pl.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-pt-br.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-pt.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-ro.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-ru.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-sk.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-sr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-sv.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-th.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-tr.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-tw.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-ua.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/i18n/grid.locale-vi.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/jqDnR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/jqDnR.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/jqModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/jqModal.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/jquery.fmatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/jquery.fmatter.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/jquery.jqGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/jqgrid/src/jquery.jqGrid.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/scripts/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/scripts/jquery-1.11.1.js -------------------------------------------------------------------------------- /Chapter16/Chapter16/contact-webapp/src/main/webapp/styles/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter16/Chapter16/contact-webapp/src/main/webapp/styles/standard.css -------------------------------------------------------------------------------- /Chapter17/Chapter17/sockjs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/sockjs/pom.xml -------------------------------------------------------------------------------- /Chapter17/Chapter17/sockjs/src/main/java/com/apress/prospring4/ch17/EchoHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/sockjs/src/main/java/com/apress/prospring4/ch17/EchoHandler.java -------------------------------------------------------------------------------- /Chapter17/Chapter17/sockjs/src/main/webapp/WEB-INF/spring/root-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/sockjs/src/main/webapp/WEB-INF/spring/root-context.xml -------------------------------------------------------------------------------- /Chapter17/Chapter17/sockjs/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/sockjs/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter17/Chapter17/sockjs/src/main/webapp/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/sockjs/src/main/webapp/static/index.html -------------------------------------------------------------------------------- /Chapter17/Chapter17/stomp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/stomp/pom.xml -------------------------------------------------------------------------------- /Chapter17/Chapter17/stomp/src/main/java/com/apress/prospring4/ch17/Stock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/stomp/src/main/java/com/apress/prospring4/ch17/Stock.java -------------------------------------------------------------------------------- /Chapter17/Chapter17/stomp/src/main/java/com/apress/prospring4/ch17/StockController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/stomp/src/main/java/com/apress/prospring4/ch17/StockController.java -------------------------------------------------------------------------------- /Chapter17/Chapter17/stomp/src/main/webapp/WEB-INF/spring/root-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/stomp/src/main/webapp/WEB-INF/spring/root-context.xml -------------------------------------------------------------------------------- /Chapter17/Chapter17/stomp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/stomp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter17/Chapter17/stomp/src/main/webapp/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/stomp/src/main/webapp/static/index.html -------------------------------------------------------------------------------- /Chapter17/Chapter17/websocket-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/websocket-api/pom.xml -------------------------------------------------------------------------------- /Chapter17/Chapter17/websocket-api/src/main/webapp/WEB-INF/spring/root-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/websocket-api/src/main/webapp/WEB-INF/spring/root-context.xml -------------------------------------------------------------------------------- /Chapter17/Chapter17/websocket-api/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/websocket-api/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Chapter17/Chapter17/websocket-api/src/main/webapp/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter17/Chapter17/websocket-api/src/main/webapp/static/index.html -------------------------------------------------------------------------------- /Chapter18/Chapter18/batch-jsr352/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/batch-jsr352/pom.xml -------------------------------------------------------------------------------- /Chapter18/Chapter18/batch-jsr352/src/main/java/com/apress/prospring4/ch18/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/batch-jsr352/src/main/java/com/apress/prospring4/ch18/Person.java -------------------------------------------------------------------------------- /Chapter18/Chapter18/batch-jsr352/src/main/java/com/apress/prospring4/ch18/PersonJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/batch-jsr352/src/main/java/com/apress/prospring4/ch18/PersonJob.java -------------------------------------------------------------------------------- /Chapter18/Chapter18/batch-jsr352/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter18/Chapter18/batch-jsr352/src/main/resources/META-INF/batch-jobs/personJob.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/batch-jsr352/src/main/resources/META-INF/batch-jobs/personJob.xml -------------------------------------------------------------------------------- /Chapter18/Chapter18/batch-jsr352/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/batch-jsr352/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter18/Chapter18/batch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/batch/pom.xml -------------------------------------------------------------------------------- /Chapter18/Chapter18/batch/src/main/java/com/apress/prospring4/ch18/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/batch/src/main/java/com/apress/prospring4/ch18/Person.java -------------------------------------------------------------------------------- /Chapter18/Chapter18/batch/src/main/java/com/apress/prospring4/ch18/PersonJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/batch/src/main/java/com/apress/prospring4/ch18/PersonJob.java -------------------------------------------------------------------------------- /Chapter18/Chapter18/batch/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter18/Chapter18/batch/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/batch/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter18/Chapter18/boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/boot/pom.xml -------------------------------------------------------------------------------- /Chapter18/Chapter18/boot/src/main/java/com/apress/prospring4/ch18/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/boot/src/main/java/com/apress/prospring4/ch18/Application.java -------------------------------------------------------------------------------- /Chapter18/Chapter18/integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/integration/pom.xml -------------------------------------------------------------------------------- /Chapter18/Chapter18/integration/src/main/java/com/apress/prospring4/ch18/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/integration/src/main/java/com/apress/prospring4/ch18/Person.java -------------------------------------------------------------------------------- /Chapter18/Chapter18/integration/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter18/Chapter18/integration/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/integration/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter18/Chapter18/xd/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/xd/pom.xml -------------------------------------------------------------------------------- /Chapter18/Chapter18/xd/src/main/java/com/apress/prospring4/ch18/PersonJobResults.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/xd/src/main/java/com/apress/prospring4/ch18/PersonJobResults.java -------------------------------------------------------------------------------- /Chapter18/Chapter18/xd/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter18/Chapter18/xd/src/main/resources/META-INF/spring/config/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/xd/src/main/resources/META-INF/spring/config/applicationContext.xml -------------------------------------------------------------------------------- /Chapter18/Chapter18/xd/src/main/resources/data/test-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/xd/src/main/resources/data/test-data.csv -------------------------------------------------------------------------------- /Chapter18/Chapter18/xd/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter18/Chapter18/xd/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter2/Chapter2/hello-world/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter2/Chapter2/hello-world/pom.xml -------------------------------------------------------------------------------- /Chapter2/Chapter2/hello-world/src/main/java/com/apress/prospring4/ch2/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter2/Chapter2/hello-world/src/main/java/com/apress/prospring4/ch2/HelloWorld.java -------------------------------------------------------------------------------- /Chapter2/Chapter2/hello-world/src/main/java/com/apress/prospring4/ch2/msf.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter2/Chapter2/hello-world/src/main/java/com/apress/prospring4/ch2/msf.properties -------------------------------------------------------------------------------- /Chapter2/Chapter2/hello-world/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter2/Chapter2/hello-world/src/main/resources/META-INF/spring/app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter2/Chapter2/hello-world/src/main/resources/META-INF/spring/app-context.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/bean-aliases/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/bean-aliases/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/bean-aliases/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/bean-aliases/src/main/resources/META-INF/spring/app-context-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/bean-aliases/src/main/resources/META-INF/spring/app-context-xml.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/bean-autowiring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/bean-autowiring/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/bean-autowiring/src/main/java/com/apress/prospring4/ch3/Bar.java: -------------------------------------------------------------------------------- 1 | package com.apress.prospring4.ch3; 2 | 3 | public class Bar { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/bean-autowiring/src/main/java/com/apress/prospring4/ch3/Foo.java: -------------------------------------------------------------------------------- 1 | package com.apress.prospring4.ch3; 2 | 3 | public class Foo { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/bean-autowiring/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/bean-autowiring/src/main/resources/META-INF/spring/app-context-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/bean-autowiring/src/main/resources/META-INF/spring/app-context-xml.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/bean-inheritance/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/bean-inheritance/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/bean-inheritance/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/bean-instantiation-mode/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/bean-instantiation-mode/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/bean-instantiation-mode/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/cdl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/cdl/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/cdl/src/main/java/com/apress/prospring4/ch3/CDLExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/cdl/src/main/java/com/apress/prospring4/ch3/CDLExample.java -------------------------------------------------------------------------------- /Chapter3/Chapter3/cdl/src/main/java/com/apress/prospring4/ch3/Container.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/cdl/src/main/java/com/apress/prospring4/ch3/Container.java -------------------------------------------------------------------------------- /Chapter3/Chapter3/cdl/src/main/java/com/apress/prospring4/ch3/DefaultContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/cdl/src/main/java/com/apress/prospring4/ch3/DefaultContainer.java -------------------------------------------------------------------------------- /Chapter3/Chapter3/cdl/src/main/java/com/apress/prospring4/ch3/Dependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/cdl/src/main/java/com/apress/prospring4/ch3/Dependency.java -------------------------------------------------------------------------------- /Chapter3/Chapter3/cdl/src/main/java/com/apress/prospring4/ch3/ManagedComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/cdl/src/main/java/com/apress/prospring4/ch3/ManagedComponent.java -------------------------------------------------------------------------------- /Chapter3/Chapter3/cdl/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/collections/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/collections/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/collections/src/main/java/com/apress/prospring4/ch3/ArtworkSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/collections/src/main/java/com/apress/prospring4/ch3/ArtworkSender.java -------------------------------------------------------------------------------- /Chapter3/Chapter3/collections/src/main/java/com/apress/prospring4/ch3/Oracle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/collections/src/main/java/com/apress/prospring4/ch3/Oracle.java -------------------------------------------------------------------------------- /Chapter3/Chapter3/collections/src/main/java/com/apress/prospring4/ch3/Recipient.java: -------------------------------------------------------------------------------- 1 | package com.apress.prospring4.ch3; 2 | 3 | public class Recipient { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/collections/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/collections/src/main/resources/META-INF/spring/app-context-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/collections/src/main/resources/META-INF/spring/app-context-xml.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/constructor-injection/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/constructor-injection/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/constructor-injection/src/main/java/com/apress/prospring4/ch3/Dependency.java: -------------------------------------------------------------------------------- 1 | package com.apress.prospring4.ch3; 2 | 3 | public class Dependency { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/constructor-injection/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/dependency-pull/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/dependency-pull/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/dependency-pull/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/dependency-pull/src/main/resources/META-INF/spring/app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/dependency-pull/src/main/resources/META-INF/spring/app-context.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/injection/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/injection/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/injection/src/main/java/com/apress/prospring4/ch3/Encyclopedia.java: -------------------------------------------------------------------------------- 1 | package com.apress.prospring4.ch3; 2 | 3 | public class Encyclopedia { 4 | 5 | } -------------------------------------------------------------------------------- /Chapter3/Chapter3/injection/src/main/java/com/apress/prospring4/ch3/Oracle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/injection/src/main/java/com/apress/prospring4/ch3/Oracle.java -------------------------------------------------------------------------------- /Chapter3/Chapter3/injection/src/main/java/com/apress/prospring4/ch3/xml/InjectRef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/injection/src/main/java/com/apress/prospring4/ch3/xml/InjectRef.java -------------------------------------------------------------------------------- /Chapter3/Chapter3/injection/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/injection/src/main/resources/META-INF/spring/app-context-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/injection/src/main/resources/META-INF/spring/app-context-xml.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/method-injection/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/method-injection/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/method-injection/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/method-replacement/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/method-replacement/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/method-replacement/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/nesting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/nesting/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/nesting/src/main/java/com/apress/prospring4/ch3/SimpleTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/nesting/src/main/java/com/apress/prospring4/ch3/SimpleTarget.java -------------------------------------------------------------------------------- /Chapter3/Chapter3/nesting/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/nesting/src/main/resources/META-INF/spring/app-context-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/nesting/src/main/resources/META-INF/spring/app-context-xml.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/nesting/src/main/resources/META-INF/spring/parent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/nesting/src/main/resources/META-INF/spring/parent.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/setter-injection/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/setter-injection/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/setter-injection/src/main/java/com/apress/prospring4/ch3/Dependency.java: -------------------------------------------------------------------------------- 1 | package com.apress.prospring4.ch3; 2 | 3 | public class Dependency { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/setter-injection/src/main/java/com/apress/prospring4/ch3/Encyclopedia.java: -------------------------------------------------------------------------------- 1 | package com.apress.prospring4.ch3; 2 | 3 | public class Encyclopedia { 4 | 5 | } -------------------------------------------------------------------------------- /Chapter3/Chapter3/setter-injection/src/main/java/com/apress/prospring4/ch3/Oracle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/setter-injection/src/main/java/com/apress/prospring4/ch3/Oracle.java -------------------------------------------------------------------------------- /Chapter3/Chapter3/setter-injection/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/simple-types/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/simple-types/pom.xml -------------------------------------------------------------------------------- /Chapter3/Chapter3/simple-types/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/Chapter3/simple-types/src/main/resources/META-INF/spring/app-context-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter3/Chapter3/simple-types/src/main/resources/META-INF/spring/app-context-xml.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/accessing-factory-beans/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/accessing-factory-beans/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/accessing-factory-beans/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/application-context-aware/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/application-context-aware/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/application-context-aware/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/bean-init/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/bean-init/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/bean-init/src/main/java/com/apress/prospring4/ch4/SimpleBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/bean-init/src/main/java/com/apress/prospring4/ch4/SimpleBean.java -------------------------------------------------------------------------------- /Chapter4/Chapter4/bean-init/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/bean-init/src/main/resources/META-INF/spring/app-context-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/bean-init/src/main/resources/META-INF/spring/app-context-xml.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/bean-name-aware/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/bean-name-aware/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/bean-name-aware/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/custom-property-editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/custom-property-editor/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/custom-property-editor/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/disposable-bean/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/disposable-bean/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/disposable-bean/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/environment/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/environment/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/environment/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/environment/src/main/resources/META-INF/spring/app-context-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/environment/src/main/resources/META-INF/spring/app-context-xml.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/events/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/events/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/events/src/main/java/com/apress/prospring4/ch4/MessageEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/events/src/main/java/com/apress/prospring4/ch4/MessageEvent.java -------------------------------------------------------------------------------- /Chapter4/Chapter4/events/src/main/java/com/apress/prospring4/ch4/Publisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/events/src/main/java/com/apress/prospring4/ch4/Publisher.java -------------------------------------------------------------------------------- /Chapter4/Chapter4/events/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/events/src/main/resources/META-INF/spring/app-context-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/events/src/main/resources/META-INF/spring/app-context-xml.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/factory-bean-and-factory-method-attributes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/factory-bean-and-factory-method-attributes/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/factory-bean-and-factory-method-attributes/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/factory-bean/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/factory-bean/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/factory-bean/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/factory-bean/src/main/resources/META-INF/spring/app-context-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/factory-bean/src/main/resources/META-INF/spring/app-context-xml.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/groovy-config-java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/groovy-config-java/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/groovy-config-java/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/groovy-config-java/src/main/resources/beans.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/groovy-config-java/src/main/resources/beans.groovy -------------------------------------------------------------------------------- /Chapter4/Chapter4/groovy-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/groovy-config/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/groovy-config/src/main/java/com/apress/prospring4/ch4/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/groovy-config/src/main/java/com/apress/prospring4/ch4/Contact.java -------------------------------------------------------------------------------- /Chapter4/Chapter4/groovy-config/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/initializing-bean-destroy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/initializing-bean-destroy/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/initializing-bean-destroy/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/initializing-bean/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/initializing-bean/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/initializing-bean/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/java-config-message-provider/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/java-config-message-provider/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/java-config-message-provider/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/java-config-message-provider/src/main/resources/message.properties: -------------------------------------------------------------------------------- 1 | message=Hello from Spring Java Configuration 2 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/java-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/java-config/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/java-config/src/main/java/com/apress/prospring4/ch4/AppConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/java-config/src/main/java/com/apress/prospring4/ch4/AppConfig.java -------------------------------------------------------------------------------- /Chapter4/Chapter4/java-config/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/java-config/src/main/resources/META-INF/spring/app-context-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/java-config/src/main/resources/META-INF/spring/app-context-xml.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/jsr330/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/jsr330/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/jsr330/src/main/java/com/apress/prospring4/ch4/Jsr330Example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/jsr330/src/main/java/com/apress/prospring4/ch4/Jsr330Example.java -------------------------------------------------------------------------------- /Chapter4/Chapter4/jsr330/src/main/java/com/apress/prospring4/ch4/MessageProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/jsr330/src/main/java/com/apress/prospring4/ch4/MessageProvider.java -------------------------------------------------------------------------------- /Chapter4/Chapter4/jsr330/src/main/java/com/apress/prospring4/ch4/MessageRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/jsr330/src/main/java/com/apress/prospring4/ch4/MessageRenderer.java -------------------------------------------------------------------------------- /Chapter4/Chapter4/jsr330/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/jsr330/src/main/resources/META-INF/spring/app-context-annotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/jsr330/src/main/resources/META-INF/spring/app-context-annotation.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/message-source/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/message-source/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/message-source/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/message-source/src/main/resources/labels_cs_CZ.properties: -------------------------------------------------------------------------------- 1 | msg=Príšerne žlutoucký kun úpel dábelské ódy 2 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/message-source/src/main/resources/labels_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/message-source/src/main/resources/labels_en.properties -------------------------------------------------------------------------------- /Chapter4/Chapter4/post-construct-pre-destroy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/post-construct-pre-destroy/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/post-construct-pre-destroy/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/post-construct/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/post-construct/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/post-construct/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/profiles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/profiles/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/profiles/src/main/java/com/apress/prospring4/ch4/Food.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/profiles/src/main/java/com/apress/prospring4/ch4/Food.java -------------------------------------------------------------------------------- /Chapter4/Chapter4/profiles/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/profiles/src/main/resources/META-INF/spring/highschool-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/profiles/src/main/resources/META-INF/spring/highschool-config.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/profiles/src/main/resources/META-INF/spring/kindergarten-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/profiles/src/main/resources/META-INF/spring/kindergarten-config.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/property-editors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/property-editors/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/property-editors/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/property-editors/src/main/resources/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/property-placeholder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/property-placeholder/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/property-placeholder/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/property-placeholder/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/property-placeholder/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter4/Chapter4/resource/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/resource/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/resource/src/main/java/com/apress/prospring4/ch4/ResourceDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/resource/src/main/java/com/apress/prospring4/ch4/ResourceDemo.java -------------------------------------------------------------------------------- /Chapter4/Chapter4/resource/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/Chapter4/resource/src/main/resources/test.txt: -------------------------------------------------------------------------------- 1 | test! -------------------------------------------------------------------------------- /Chapter4/Chapter4/shutdown-hook/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter4/Chapter4/shutdown-hook/pom.xml -------------------------------------------------------------------------------- /Chapter4/Chapter4/shutdown-hook/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/after-returning-advice-keygen/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/after-returning-advice-keygen/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/after-returning-advice-keygen/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/annotation-pointcut/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/annotation-pointcut/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/annotation-pointcut/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/aop-namespace/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/aop-namespace/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/aop-namespace/src/main/java/com/apress/prospring4/ch5/MyAdvice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/aop-namespace/src/main/java/com/apress/prospring4/ch5/MyAdvice.java -------------------------------------------------------------------------------- /Chapter5/Chapter5/aop-namespace/src/main/java/com/apress/prospring4/ch5/MyBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/aop-namespace/src/main/java/com/apress/prospring4/ch5/MyBean.java -------------------------------------------------------------------------------- /Chapter5/Chapter5/aop-namespace/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/aop-namespace/src/main/resources/META-INF/spring/app-context-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/aop-namespace/src/main/resources/META-INF/spring/app-context-xml.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/aspectj-annotations/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/aspectj-annotations/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/aspectj-annotations/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/aspectj-aspects/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/aspectj-aspects/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/aspectj-aspects/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/aspectj-regex-pointcuts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/aspectj-regex-pointcuts/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/aspectj-regex-pointcuts/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/cflow-pointcuts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/cflow-pointcuts/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/cflow-pointcuts/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/cglib-performance/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/cglib-performance/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/cglib-performance/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/composable-pointcut/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/composable-pointcut/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/composable-pointcut/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/dynamic-pointcut/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/dynamic-pointcut/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/dynamic-pointcut/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/hello-world/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/hello-world/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/hello-world/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/modification-introduction/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/modification-introduction/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/modification-introduction/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/proxyfactorybean-introduction/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/proxyfactorybean-introduction/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/proxyfactorybean-introduction/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/proxyfactorybean/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/proxyfactorybean/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/proxyfactorybean/src/main/java/com/apress/prospring4/ch5/MyBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/proxyfactorybean/src/main/java/com/apress/prospring4/ch5/MyBean.java -------------------------------------------------------------------------------- /Chapter5/Chapter5/proxyfactorybean/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/regex-pointcuts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/regex-pointcuts/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/regex-pointcuts/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/security/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/security/src/main/java/com/apress/prospring4/ch5/SecureBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/security/src/main/java/com/apress/prospring4/ch5/SecureBean.java -------------------------------------------------------------------------------- /Chapter5/Chapter5/security/src/main/java/com/apress/prospring4/ch5/SecurityAdvice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/security/src/main/java/com/apress/prospring4/ch5/SecurityAdvice.java -------------------------------------------------------------------------------- /Chapter5/Chapter5/security/src/main/java/com/apress/prospring4/ch5/UserInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/security/src/main/java/com/apress/prospring4/ch5/UserInfo.java -------------------------------------------------------------------------------- /Chapter5/Chapter5/security/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/simple-after-returning-advice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/simple-after-returning-advice/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/simple-after-returning-advice/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/simple-around-advice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/simple-around-advice/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/simple-around-advice/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/simple-before-advice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/simple-before-advice/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/simple-before-advice/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/simple-name-matching/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/simple-name-matching/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/simple-name-matching/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/simple-throws-advice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/simple-throws-advice/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/simple-throws-advice/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/Chapter5/static-pointcut/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/static-pointcut/pom.xml -------------------------------------------------------------------------------- /Chapter5/Chapter5/static-pointcut/src/main/java/com/apress/prospring4/ch5/BeanOne.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/static-pointcut/src/main/java/com/apress/prospring4/ch5/BeanOne.java -------------------------------------------------------------------------------- /Chapter5/Chapter5/static-pointcut/src/main/java/com/apress/prospring4/ch5/BeanTwo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter5/Chapter5/static-pointcut/src/main/java/com/apress/prospring4/ch5/BeanTwo.java -------------------------------------------------------------------------------- /Chapter5/Chapter5/static-pointcut/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/Chapter6/plain-jdbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/plain-jdbc/pom.xml -------------------------------------------------------------------------------- /Chapter6/Chapter6/plain-jdbc/src/main/java/com/apress/prospring4/ch6/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/plain-jdbc/src/main/java/com/apress/prospring4/ch6/Contact.java -------------------------------------------------------------------------------- /Chapter6/Chapter6/plain-jdbc/src/main/java/com/apress/prospring4/ch6/ContactDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/plain-jdbc/src/main/java/com/apress/prospring4/ch6/ContactDao.java -------------------------------------------------------------------------------- /Chapter6/Chapter6/plain-jdbc/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/Chapter6/plain-jdbc/src/main/resources/META-INF/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/plain-jdbc/src/main/resources/META-INF/sql/schema.sql -------------------------------------------------------------------------------- /Chapter6/Chapter6/plain-jdbc/src/main/resources/META-INF/sql/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/plain-jdbc/src/main/resources/META-INF/sql/test-data.sql -------------------------------------------------------------------------------- /Chapter6/Chapter6/plain-jdbc/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/plain-jdbc/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-annotations-lambda/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-annotations-lambda/pom.xml -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-annotations-lambda/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-annotations-lambda/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-annotations-lambda/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-annotations/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-annotations/pom.xml -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-annotations/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-annotations/src/main/resources/META-INF/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-annotations/src/main/resources/META-INF/sql/schema.sql -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-annotations/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-annotations/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-embedded/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-embedded/pom.xml -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-embedded/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-embedded/src/main/resources/META-INF/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-embedded/src/main/resources/META-INF/sql/schema.sql -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-embedded/src/main/resources/META-INF/sql/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-embedded/src/main/resources/META-INF/sql/test-data.sql -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-embedded/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-embedded/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-namedparam/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-namedparam/pom.xml -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-namedparam/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-namedparam/src/main/resources/META-INF/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-namedparam/src/main/resources/META-INF/sql/schema.sql -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-namedparam/src/main/resources/META-INF/sql/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-namedparam/src/main/resources/META-INF/sql/test-data.sql -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-namedparam/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-namedparam/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-resultsetextractor-lambda/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-resultsetextractor-lambda/pom.xml -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-resultsetextractor-lambda/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-resultsetextractor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-resultsetextractor/pom.xml -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-resultsetextractor/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-resultsetextractor/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-resultsetextractor/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-rowmapper-lambda/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-rowmapper-lambda/pom.xml -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-rowmapper-lambda/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-rowmapper-lambda/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-rowmapper-lambda/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-rowmapper/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-rowmapper/pom.xml -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-rowmapper/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-rowmapper/src/main/resources/META-INF/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-rowmapper/src/main/resources/META-INF/sql/schema.sql -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-rowmapper/src/main/resources/META-INF/sql/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-rowmapper/src/main/resources/META-INF/sql/test-data.sql -------------------------------------------------------------------------------- /Chapter6/Chapter6/spring-jdbc-rowmapper/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter6/Chapter6/spring-jdbc-rowmapper/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter7/Chapter7/hibernate-crud/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter7/Chapter7/hibernate-crud/pom.xml -------------------------------------------------------------------------------- /Chapter7/Chapter7/hibernate-crud/src/main/java/com/apress/prospring4/ch7/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter7/Chapter7/hibernate-crud/src/main/java/com/apress/prospring4/ch7/Contact.java -------------------------------------------------------------------------------- /Chapter7/Chapter7/hibernate-crud/src/main/java/com/apress/prospring4/ch7/Hobby.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter7/Chapter7/hibernate-crud/src/main/java/com/apress/prospring4/ch7/Hobby.java -------------------------------------------------------------------------------- /Chapter7/Chapter7/hibernate-crud/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter7/Chapter7/hibernate-crud/src/main/resources/META-INF/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter7/Chapter7/hibernate-crud/src/main/resources/META-INF/sql/schema.sql -------------------------------------------------------------------------------- /Chapter7/Chapter7/hibernate-crud/src/main/resources/META-INF/sql/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter7/Chapter7/hibernate-crud/src/main/resources/META-INF/sql/test-data.sql -------------------------------------------------------------------------------- /Chapter7/Chapter7/hibernate-crud/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter7/Chapter7/hibernate-crud/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter8/Chapter8/hibernate-envers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/hibernate-envers/pom.xml -------------------------------------------------------------------------------- /Chapter8/Chapter8/hibernate-envers/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter8/Chapter8/hibernate-envers/src/main/resources/META-INF/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/hibernate-envers/src/main/resources/META-INF/sql/schema.sql -------------------------------------------------------------------------------- /Chapter8/Chapter8/hibernate-envers/src/main/resources/META-INF/sql/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/hibernate-envers/src/main/resources/META-INF/sql/test-data.sql -------------------------------------------------------------------------------- /Chapter8/Chapter8/hibernate-envers/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/hibernate-envers/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-criteria/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-criteria/pom.xml -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-criteria/src/main/java/com/apress/prospring4/ch8/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-criteria/src/main/java/com/apress/prospring4/ch8/Contact.java -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-criteria/src/main/java/com/apress/prospring4/ch8/Hobby.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-criteria/src/main/java/com/apress/prospring4/ch8/Hobby.java -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-criteria/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-criteria/src/main/resources/META-INF/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-criteria/src/main/resources/META-INF/sql/schema.sql -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-criteria/src/main/resources/META-INF/sql/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-criteria/src/main/resources/META-INF/sql/test-data.sql -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-criteria/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-criteria/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-crud/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-crud/pom.xml -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-crud/src/main/java/com/apress/prospring4/ch8/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-crud/src/main/java/com/apress/prospring4/ch8/Contact.java -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-crud/src/main/java/com/apress/prospring4/ch8/ContactService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-crud/src/main/java/com/apress/prospring4/ch8/ContactService.java -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-crud/src/main/java/com/apress/prospring4/ch8/ContactSummary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-crud/src/main/java/com/apress/prospring4/ch8/ContactSummary.java -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-crud/src/main/java/com/apress/prospring4/ch8/Hobby.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-crud/src/main/java/com/apress/prospring4/ch8/Hobby.java -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-crud/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-crud/src/main/resources/META-INF/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-crud/src/main/resources/META-INF/sql/schema.sql -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-crud/src/main/resources/META-INF/sql/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-crud/src/main/resources/META-INF/sql/test-data.sql -------------------------------------------------------------------------------- /Chapter8/Chapter8/jpa-crud/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/jpa-crud/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa-audit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/spring-data-jpa-audit/pom.xml -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa-audit/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa-audit/src/main/resources/META-INF/orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/spring-data-jpa-audit/src/main/resources/META-INF/orm.xml -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa-audit/src/main/resources/META-INF/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/spring-data-jpa-audit/src/main/resources/META-INF/sql/schema.sql -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa-audit/src/main/resources/META-INF/sql/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/spring-data-jpa-audit/src/main/resources/META-INF/sql/test-data.sql -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa-audit/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/spring-data-jpa-audit/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/spring-data-jpa/pom.xml -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa/src/main/java/com/apress/prospring4/ch8/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/spring-data-jpa/src/main/java/com/apress/prospring4/ch8/Contact.java -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa/src/main/java/com/apress/prospring4/ch8/Hobby.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/spring-data-jpa/src/main/java/com/apress/prospring4/ch8/Hobby.java -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa/src/main/resources/META-INF/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/spring-data-jpa/src/main/resources/META-INF/sql/schema.sql -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa/src/main/resources/META-INF/sql/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/spring-data-jpa/src/main/resources/META-INF/sql/test-data.sql -------------------------------------------------------------------------------- /Chapter8/Chapter8/spring-data-jpa/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter8/Chapter8/spring-data-jpa/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-annotation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter9/Chapter9/transactions-annotation/pom.xml -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-annotation/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-annotation/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter9/Chapter9/transactions-annotation/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-jta/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter9/Chapter9/transactions-jta/pom.xml -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-jta/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-jta/src/main/resources/META-INF/config/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter9/Chapter9/transactions-jta/src/main/resources/META-INF/config/schema.sql -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-jta/src/main/resources/META-INF/config/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter9/Chapter9/transactions-jta/src/main/resources/META-INF/config/test-data.sql -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-jta/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter9/Chapter9/transactions-jta/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-programatic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter9/Chapter9/transactions-programatic/pom.xml -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-programatic/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-programatic/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter9/Chapter9/transactions-programatic/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-xml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter9/Chapter9/transactions-xml/pom.xml -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-xml/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-xml/src/main/resources/META-INF/config/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter9/Chapter9/transactions-xml/src/main/resources/META-INF/config/schema.sql -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-xml/src/main/resources/META-INF/config/test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter9/Chapter9/transactions-xml/src/main/resources/META-INF/config/test-data.sql -------------------------------------------------------------------------------- /Chapter9/Chapter9/transactions-xml/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/Chapter9/Chapter9/transactions-xml/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-spring-14/HEAD/contributing.md --------------------------------------------------------------------------------