惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
Help Net Security
Help Net Security
P
Proofpoint News Feed
J
Java Code Geeks
爱范儿
爱范儿
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Full Disclosure
Google DeepMind News
Google DeepMind News
H
Help Net Security
G
Google Developers Blog
Jina AI
Jina AI
Vercel News
Vercel News
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
L
Lohrmann on Cybersecurity
S
Schneier on Security
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
Security Archives - TechRepublic
Security Archives - TechRepublic
阮一峰的网络日志
阮一峰的网络日志
N
News and Events Feed by Topic
GbyAI
GbyAI
B
Blog
O
OpenAI News
博客园_首页
Cisco Talos Blog
Cisco Talos Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Hacker News: Ask HN
Hacker News: Ask HN
TaoSecurity Blog
TaoSecurity Blog
腾讯CDC
MongoDB | Blog
MongoDB | Blog
M
MIT News - Artificial intelligence
C
Cybersecurity and Infrastructure Security Agency CISA
Cyberwarzone
Cyberwarzone
Webroot Blog
Webroot Blog
Simon Willison's Weblog
Simon Willison's Weblog
Y
Y Combinator Blog
C
Cisco Blogs
A
Arctic Wolf
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
T
The Exploit Database - CXSecurity.com
Security Latest
Security Latest
AI
AI
W
WeLiveSecurity
aimingoo的专栏
aimingoo的专栏
The Register - Security
The Register - Security
Project Zero
Project Zero
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
Blog — PlanetScale
Blog — PlanetScale

博客园 - Have a try

java的一些命名规则 分页-数据前序号显示的问题 接口 java.sql.Statement(附网址,不错!) Java StringBuffer类常用方法简介 SQL2000附加SQL2005数据具体方法(转) B/S系统权限控制的一种简单方法(转) JSP实现静态页生成的例子 JSP生成静态页原理(转) js日历超漂亮 一个js写的桌面倒计时(请高手帮忙改一下) DispatchAction学习 HQL语句大全(转) Spring框架的一些基础知识 配置Hibernate容易产生的错误 sql常用的函数 sql数据操作语句(还有例子哦) java.util.Date和java.sql.Date的区别及应用 接口的意义(转) smalldatetime和datetime的区別
在使用struts遇到的一个问题
Have a try · 2008-04-14 · via 博客园 - Have a try

     最近自己想用struts+DAO设计模式自行开发一个系统,在配置struts时遇到了一个问题,在自己的action里不能写execute(... ...)方法,因为每次执行Action的时候,struts都会默认先调用execute(... ...)方法,而导致你自己的action不能执行,所以我们在写action的时候应该继承一个BaseAction,当然这个action是自己写的,把execute(... ...)方法写在那里面,而且BaseAction必须继承DispatchAction,这样就可以了!DispatchAction这个就不用我多说了吧,请看我的上一篇日志!