- 浏览: 108734 次
- 性别:
- 来自: 大连
最新评论
文章列表
package com.bjsxt.aop;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
public class LogInterceptor implements InvocationHandler {
private Object target;
public Object getTarget() {
return target;
}
public void setTarget(Object target) {
this.target = target; ...
package com.bjsxt.service;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
import com.bjsxt.dao.UserDAO;
import com.bjsxt.model.User;
@Component("userService")
public class UserService {
private UserDAO userDAO;
public void add(User user) {
us ...
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
<bean name ...
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml ...
(function($) {
$.extend({
progressBar: new function() {
/* public methods */
this.construct = function(arg1, arg2) {
alert('test');
};
}
});
$.fn.extend({
test: $.progressBar.construct
});
})(jQuery);
$(document).ready(function() {
jQuery("#spaceused1&q ...
<div id="dialog" title="機器の追加">
<div class="container">
<div class="header">
<h1 class="header">機器の追加</h1>
</div>
<div class="left">
</div>
...
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Dialog - Default functionality</title>
<link rel="stylesheet"
href="../../css/formToWizard.css" />
<link re ...
function deviceWizardAdd() {
$.ajax({
type: "get",
url: "./deviceWizardAdd.jsp",
cache: false,
success: function(jsp){
$("body").append(jsp);
$("#SignupForm").formToWizard({ submitButton: 'SaveAccount' });
...
jQuery("#backgroundprograma").html('<br/>栏目名称:<input type="text" id="name" name="webtitle" size="20" /><br/><br/>提示说明:<textarea id="title" rows="6" cols="30"></textarea><br/> ...