Spring
MaxCode-1
这个作者很懒,什么都没留下…
展开
-
Spring 基础 实例
配置文件web.xml``` org.springframework.web.util.Log4jConfigListener Spring org.springframework.web.servlet.DispatcherServlet原创 2016-01-05 10:52:02 · 376 阅读 · 0 评论 -
quartz 遇到的问题
quartz 踩过的坑:1. Caused by: org.quartz.JobPersistenceException: Couldn't store job: FUNCTION ××××.EMPTY_BLOB does not exist [See nested exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorExc原创 2017-03-24 10:17:50 · 14038 阅读 · 0 评论 -
Quartz jobStore
JobStore是负责跟踪调度器中所有的工作数据:作业任务、触发器、日历等。JDBCJobStore JDBCJobStore——它通过JDBC将所有的数据保存在数据库中。 JDBCJobStore几乎可以适用于任何数据库,它已经在Oracle,PostgreSQL, MySQL, MS SQLServer, HSQLDB和 DB2数据库中广泛使用。为了使用JDBCJobStore,你原创 2017-03-24 09:58:50 · 1059 阅读 · 0 评论 -
spring quartz
Quartz是OpenSymphony开源组织在Job scheduling领域又一个开源项目,它可以与J2EE与J2SE应用程序相结合也可以单独使用。Quartz可以用来创建简单或为运行十个,百个,甚至是好几万个Jobs这样复杂的程序。Jobs可以做成标准的Java组件或 EJBs。Quartz是一个完全由java编写的开源作业调度框架。不要让作业调度这个术语吓着你。尽管Quartz框架整合了许多原创 2017-01-17 10:07:29 · 337 阅读 · 0 评论 -
Hibernate - Spring 整合基础实例 《二》
先写pom.xml log4j log4j 1.2.14 junit junit 3.8.1 test or原创 2016-01-08 17:09:03 · 633 阅读 · 0 评论 -
Hibernate - 基础 一
自己写的一个Hibernate例子:它是和spring3整合的web.xml<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.su原创 2016-01-07 17:22:35 · 373 阅读 · 0 评论 -
Spring batch 实例
还是先说需要的jar包pomspring jar包: org.springframework spring-test 4.1.0.RELEASE org.springframework spring-webmvc原创 2016-01-06 17:39:06 · 2175 阅读 · 0 评论 -
WebService-CXF-实例
自己写的一个WebService-CXF首先先加在jar包pom org.apache.cxf cxf-core 3.1.2 org.apache.cxf cxf-rt-frontend-jaxws原创 2016-01-05 17:43:24 · 574 阅读 · 0 评论 -
Spring 基础实例1
applicationContext.xml Action:@Controllerpublic class原创 2016-01-05 11:07:35 · 388 阅读 · 0 评论 -
SpringBoot Maven 打包JAR
个人博客:http://blogxinxiucan.sh1.newtouch.com/<build> <finalName>${project.artifactId}-${env}-${project.version}.${scmVersion}</finalName> <resources> <resource>原创 2017-05-15 11:00:16 · 1234 阅读 · 0 评论