spring
侯卓
www.4321a.com
展开
-
springcloud中的eureka服务和客户端
server服务端 appliction.prepties中的代码 server.display-name=eureka server.port=9090 server.context-path=/ management.security.enabled=false eureka.client.registerWithEureka = false eureka.client.fetchRegistry =false client客户端 application.preptise中的代码 eu原创 2020-06-11 14:57:30 · 204 阅读 · 0 评论 -
spring定时任务
在springMVC里使用spring的定时任务非常的简单,如下: (一)在xml里加入task的命名空间 xmlns:task="http://www.springframework.org/schema/task" http://www.springframework.org/schema/task http://www.springframework.org/schema/task/...转载 2019-03-20 15:21:45 · 106 阅读 · 0 评论 -
查询mysql是否支持分区
mysql怎么查看是否支持分区 mysql从5.1开始支持分区功能 查询命令如下: mysql> show plugins like '%partiotion%'; mysql> show variables like '%partition%'; Empty set (0.00 sec) 如果查询结果显示Empty,表示不支持分区。 但是上面的查询方法只是针对my原创 2017-08-23 11:40:33 · 439 阅读 · 1 评论 -
spring事务的详细解读
一、spring事务配置 1、spring配置 在配置数据源的下方配置 2、增加@Transactional注解 在需要的service实现层方法上加入这个注解 加注解时需要注意的问题: 1、在需要事务管理的地方加@Transactional注解。 2、@Transactional注解只能应用到 public 可见度原创 2017-08-23 10:58:20 · 211 阅读 · 0 评论 -
jsp页面引入spring Controller
1down votefavorite I'm using Spring MVC. I want to include menu page (named menu.jsp) with a controller (named MenuController) to my main page. If I call http://localhost:8080/myWe原创 2015-10-17 11:14:08 · 1073 阅读 · 0 评论 -
spring三种数据源方式
[1].[代码] JNDI方式 跳至 [1] [2] [3] ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1、SpringJNDI数据源配置信息: <bean id="dataSo原创 2015-10-17 10:25:01 · 364 阅读 · 0 评论 -
spring 定时器
Spring 定时任务之 @Scheduled cron表达式 博客分类: Spring 一个cron表达式有至少6个(也可能7个)有空格分隔的时间元素。 按顺序依次为 秒(0~59) 分钟(0~59) 小时(0~23) 天(月)(0~31,但是你需要考虑你月的天数) 月(0~11) 天(星期)(1~7 1=SUN原创 2015-07-24 10:02:48 · 326 阅读 · 0 评论 -
spring 配置多数据源
配置application.xml的dataSource: <bean id="aTestDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="com.mysq原创 2014-11-11 15:08:43 · 359 阅读 · 0 评论 -
Spring自定义拦截器和自定义异常拦截
/login /js /css /image /images原创 2014-09-21 11:25:01 · 1177 阅读 · 0 评论 -
spring AOP计算service运行时间
/** * */ package com.dtm.log; import java.net.InetAddress; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspe原创 2014-07-17 13:23:24 · 1318 阅读 · 0 评论 -
spring 改写的beanUtis,不co…
package pfl.com.vifiv.wang.common.utils; import java.beans.PropertyDescriptor; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import org.springframework.beans.BeanUtils; import原创 2014-03-08 10:11:53 · 700 阅读 · 0 评论 -
spring定时器用Annotation实现
spring定时器用Annotation实现 由于项目中需要定时更新一些数据,所以用到了spring的定时器,在使用Quartz过程中,遇到了一些麻烦,最终牵扯的错误太多: 1、我的一个Service类中需要加入定时执行即Service extends QuartzJobBean,但是Service类中使用@Autowired注入了属性:dao对象 2、在executeInternal方原创 2014-03-08 10:11:03 · 378 阅读 · 0 评论 -
spring log4j
spring对log4j提供了很好的支持。 web.xml中配置代码如下: Java代码 log4j" /> log4j" />log4j" TITLE="spring log4j" /> webAppRootKey webName.root log4jConfigLocatio原创 2014-03-08 10:08:26 · 477 阅读 · 0 评论 -
spring 3.0 xmlns
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.spr原创 2014-03-08 10:13:11 · 421 阅读 · 0 评论