- 浏览: 315763 次
- 性别:
- 来自: 辽宁鞍山
最新评论
-
linghuan:
[flash=200,200][url][img][list] ...
Spring MVC常用的注解 -
springmvc_springjpa:
spring mvc demo教程源代码下载,地址:http: ...
Spring MVC常用的注解 -
TremBear:
Spring MVC常用的注解 -
evening_xxxy:
...
Spring MVC常用的注解 -
xiao_xu_zi:
System.out.printn("" ...
Spring MVC常用的注解
文章列表
SpringMVC 的 Controller 类名上 如果没加 @Controller 注解,那么该Controller类中的方法和方法对应的uri就不能被找到
WARN No mapping found for HTTP request with URI [/ehr/application/fee/fee-input.do] in DispatcherServlet with name 'spring-mvc'
@Controllerpublic class FeeController extends ApplicationController{
…… }
Controller
中 的方法 返回值 如果是 Map<String,String>
该方法名字上要加 @ResponseBody 注解 否则前台JS验证会捕捉到ERROR 而后台没有异常。操作成功,但是会提示错误信息
/** * 审核保存 */ @RequestMapping("application/comission/pro-comission-appro-save.do") @ResponseBody protected Map<String, String> goApproSave(HttpServletReque ...
好像新的mybatis要求mapper中对于允许为空的字段,必须注明jdbcType,例如:#{projectName,jdbcType=VARCHAR} ,否则在增加、修改数据时会出现错误:### Error updating database. Cause: org.apache.ibatis.type.TypeException: Error setting null parameter. Most JDBC drivers require that the JdbcType must be specified for all nullable parameters. Cause: j ...
spring mvc常用的注解:个介绍。 @Controller @Controller 负责注册一个bean 到spring 上下文中,bean 的ID 默认为类名称开头字母小写,你也可以自己指定,如下 方法一: @Controller public class TestController {} 方法二: @Controller("tmpController") public class TestController {} @RequestMapping 1.@RequestMapping用来定义访问的URL,你可以为整个类定义一个@Reque ...
一个大数据量删除问题:表中有1E5条数据 删除一个月前的数据(近7000w) 有比交快速的解决方法吗 目前只找到一种方法:存放在临时表后 再truncate 再insert
这种貌似也比较慢
1、create table newtable as select * from oldtable where cdate <= 20130201;2、truncate table oldtable;3、drop table oldtable;4、rename table newtable to oldtable;
端口冲突
开始-》运行-》CMD
netstat -a -n -o 最后一个选项表示连接所在进程id. 找到8080端口的PID然后打开任务管理器, 切换到进程选项卡, 在菜单栏选择查看->选择列, 选择PID. 在列表中找到PID对应的进程杀掉就可以了
<!DOCTYPE html> 写成这个,不然easyui ie8下 ComboBox和DateBox 控件 点击 显示的位置不对
<%@ page language="java" contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"%><%@include file="/common/taglibs.jsp"%><!DOCTYPE html><html><head& ...
-vmargs-Xmx512m-XX:MaxPermSize=512m-XX:ReservedCodeCacheSize=64m
javax.el.PropertyNotFoundException: Property 'last2ZfzFlag' not found on type com.zbxsoft.application.project.controller.ProjectFinanceModel
MODEL缺少get set方法
ORA-00923: 未找到要求的 FROM 关键字
1,select 中的字段出现了未定义的字段 或是 错误的别名:
LAST_YEAR as lastYear 写成了
LAST_YEAR as last Year (中间有空格)
2 select中有关键字
SIZE DATE啥的
jquery-easyui
- 博客分类:
- jquery-easyui
日期
开始日期:<input type="text" id="txtStartTime" class="easyui-datebox" style="width:90px"/>设置初始值:$(function () { $("#txtStartTime").datebox({ formatter: formatDate }); //设置 $("#txtStartTime").datebox("setValue", ...
序列 sequence 的SQL
-- Create sequence create sequence SEQ_ESTIMATEminvalue 1maxvalue 9999999999999999999999999999start with 1increment by 1cache 20;
MyBatis 插入空值时,需要指定JdbcType mybatis insert空值报空值异常,但是在pl/sql不会提示错误,主要原因是mybatis无法进行转换,
MyBatis 通过包含的jdbcType类型
BIT FLOAT CHAR TIMESTAMP OTHER UNDEFINEDTINYINT REAL VARCHAR BINARY BLOB NVARCHARSMALLINT DOUBLE LONGVARCHAR ...
新增表字段
ALTER TABLE tablename ADD columnname coltype;
例子:
ALTER TABLE TRZ_PROJECT ADD PROJECTPARTIESNAME vachar2(600);
commit;
负载均衡
xml 写道
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camel="http://cxf.apache.org/transports/camel" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.spr ...