配置Struts環境[Eclipse]
Struts環境配置
1.Eclipse
下載網址: http://www.eclipse.org/
2.tomcat
下載網址: http://jakarta.apache.org/site/binindex.cgi
3.struts
下載網址: http://jakarta.apache.org/site/binindex.cgi
4.tomcat for Eclipse外掛
下載網址: http://www.sysdeo.com/eclipse/tomcatPlugin.html
5.easy struts外掛
下載網址: http://sourceforge.net/projects/easystruts
6.EJB開發工具lomboz(不是必需的)
下載網址: http://www.objectlearn.com/
把上述4中的com.sysdeo.eclipse.tomcat_2.2.1和上述5中的com.cross.easystruts.eclipse_0.6.4分別COPY到
eclipse/plugins/,然後進行以下設定
1.Tomcat的初始化設定:啟動Eclipse,通過選單Windows->Preferences開啟設定視窗
選擇Tomcat並做配置
1.Easy Struts的初始化設定:啟動Eclipse,通過選單Windows->Preferences開啟設定視窗
選擇struts 1.1並在struts 1.1所需的庫檔案中找到並新增struts.jar檔案
3.在struts 1.1所需的型別庫描述檔案中建議至少加入前面提到的三個描述檔案分別是:
struts_html.tld、struts_bean.tld、struts_logic.tld,這三個檔案會在建立struts應用專案時自動拷貝到專案的WEB-INF目錄下。
4.新建一個Tomcat專案,然後右擊project->Properties->Libraries,把struts 1.1中的包全部加入
5.新建Add Easy Struts Support
6.把struts 1.1中的包全部COPY到project->WEB-INF/LIB/
用JAVA連線SQL Server 2000取得資料
1.下載JDBC FOR SQLSERVER 的驅動:
http://www.microsoft.com/downloads/details.aspx?FamilyID=4f8f2f01-1ed7-4c4d-8f7b-3d47969e66ae&DisplayLang=en#filelist
點選setup.exe下載驅動
2.下載後開始安裝,就用預設設定安裝,會被安裝到:
C:/Program Files/Microsoft SQL Server 2000 Driver for JDBC
3.把C:/Program Files/Microsoft SQL Server 2000 Driver for JDBC/lib
下面的mssqlserver.jar,msbase.jar,msutil.jar三個檔案拷貝到你的
JDK主目錄/jre/lib/ext下面,現在JDBC驅動就算配置好了
4.編譯執行測試程式:
String driverName = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
String connURL = "jdbc:microsoft:sqlserver://BLUESKY:1433;User=sa;Password=sa;DatabaseName=sitedb";
try{
Class.forName(driverName);
Connection conn = DriverManager.getConnection(connURL);
Statement stmt = conn.createStatement();
StringBuffer strsql = new StringBuffer();
strsql.append("select * from USERTABLE where username ='" + username + "'");
ResultSet rs = stmt.executeQuery(strsql.toString());
if(!rs.next() ||!password.equals(NulltoString(rs.getString("password")).trim())){
DBmsg = "對不起,您所輸入的使用者不存在或使用者密碼不正確";
}else{
username = NulltoString(rs.getString("username"));
selectright = NulltoString(rs.getString("selectright"));
deleteright = NulltoString(rs.getString("deleteright"));
updateright = NulltoString(rs.getString("updateright"));
}
}catch (ClassNotFoundException ex){
ex.printStackTrace();
}catch (SQLException ex){
ex.printStackTrace();
}
接下來就可以開始做struts了!!!
1.Eclipse
下載網址: http://www.eclipse.org/
2.tomcat
下載網址: http://jakarta.apache.org/site/binindex.cgi
3.struts
下載網址: http://jakarta.apache.org/site/binindex.cgi
4.tomcat for Eclipse外掛
下載網址: http://www.sysdeo.com/eclipse/tomcatPlugin.html
5.easy struts外掛
下載網址: http://sourceforge.net/projects/easystruts
6.EJB開發工具lomboz(不是必需的)
下載網址: http://www.objectlearn.com/
把上述4中的com.sysdeo.eclipse.tomcat_2.2.1和上述5中的com.cross.easystruts.eclipse_0.6.4分別COPY到
eclipse/plugins/,然後進行以下設定
1.Tomcat的初始化設定:啟動Eclipse,通過選單Windows->Preferences開啟設定視窗
選擇Tomcat並做配置
1.Easy Struts的初始化設定:啟動Eclipse,通過選單Windows->Preferences開啟設定視窗
選擇struts 1.1並在struts 1.1所需的庫檔案中找到並新增struts.jar檔案
3.在struts 1.1所需的型別庫描述檔案中建議至少加入前面提到的三個描述檔案分別是:
struts_html.tld、struts_bean.tld、struts_logic.tld,這三個檔案會在建立struts應用專案時自動拷貝到專案的WEB-INF目錄下。
4.新建一個Tomcat專案,然後右擊project->Properties->Libraries,把struts 1.1中的包全部加入
5.新建Add Easy Struts Support
6.把struts 1.1中的包全部COPY到project->WEB-INF/LIB/
用JAVA連線SQL Server 2000取得資料
1.下載JDBC FOR SQLSERVER 的驅動:
http://www.microsoft.com/downloads/details.aspx?FamilyID=4f8f2f01-1ed7-4c4d-8f7b-3d47969e66ae&DisplayLang=en#filelist
點選setup.exe下載驅動
2.下載後開始安裝,就用預設設定安裝,會被安裝到:
C:/Program Files/Microsoft SQL Server 2000 Driver for JDBC
3.把C:/Program Files/Microsoft SQL Server 2000 Driver for JDBC/lib
下面的mssqlserver.jar,msbase.jar,msutil.jar三個檔案拷貝到你的
JDK主目錄/jre/lib/ext下面,現在JDBC驅動就算配置好了
4.編譯執行測試程式:
String driverName = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
String connURL = "jdbc:microsoft:sqlserver://BLUESKY:1433;User=sa;Password=sa;DatabaseName=sitedb";
try{
Class.forName(driverName);
Connection conn = DriverManager.getConnection(connURL);
Statement stmt = conn.createStatement();
StringBuffer strsql = new StringBuffer();
strsql.append("select * from USERTABLE where username ='" + username + "'");
ResultSet rs = stmt.executeQuery(strsql.toString());
if(!rs.next() ||!password.equals(NulltoString(rs.getString("password")).trim())){
DBmsg = "對不起,您所輸入的使用者不存在或使用者密碼不正確";
}else{
username = NulltoString(rs.getString("username"));
selectright = NulltoString(rs.getString("selectright"));
deleteright = NulltoString(rs.getString("deleteright"));
updateright = NulltoString(rs.getString("updateright"));
}
}catch (ClassNotFoundException ex){
ex.printStackTrace();
}catch (SQLException ex){
ex.printStackTrace();
}
接下來就可以開始做struts了!!!
相關文章
- Eclipse配置maven環境EclipseMaven
- 【環境配置】Linux環境下下載、配置java環境、安裝eclipse、建立eclipse快捷方式詳解LinuxJavaEclipse
- Eclipse配置PHP開發環境EclipsePHP開發環境
- 在windows下配置Eclipse + go環境WindowsEclipseGo
- 如何在Eclipse中配置安卓環境Eclipse安卓
- eclipse配置遠端執行環境Eclipse
- JDK環境配置 maven環境配置 eclipse關聯+maven+svn+tomcatJDKMavenEclipseTomcat
- Struts2,Hibernate,Spring 環境配置Spring
- Eclipse從零配置Maven環境 筆記EclipseMaven筆記
- Eclipse + Pydev 配置Python開發環境EclipsedevPython開發環境
- 【Struts2複習知識點一】-配置struts2環境
- 想學習struts 該怎麼配置環境呢?
- Eclipse與Android2.2開發環境配置EclipseAndroid開發環境
- Android開發:在Eclipse中配置Android環境AndroidEclipse
- 安卓開發環境配置之Windows+ADT+eclipse安卓開發環境WindowsEclipse
- openGauss資料庫JDBC環境連線配置(Eclipse)資料庫JDBCEclipse
- app自動化測試環境配置:adb環境配置、monkey環境配置、appium環境配置大全APP
- 【Struts2】--專案環境搭建
- 第三篇:配置Hadoop的Eclipse開發環境HadoopEclipse開發環境
- 環境配置
- 配置開發環境、生成環境、測試環境開發環境
- cocos2d-x開發環境在win + eclipse配置開發環境Eclipse
- Java Web應用開發環境配置Eclipse+Tomcat+LombozJavaWeb開發環境EclipseTomcat
- Java Web應用開發環境配置Eclipse+Tomcat+MyeclispeJavaWeb開發環境EclipseTomcatLisp
- Flutter環境配置Flutter
- php環境配置PHP
- vue – 環境配置Vue
- JAVA環境配置Java
- 一、環境配置
- 在IBM Lotus Sametime V7.5.1中配置Eclipse環境IBMEclipse
- 在Ubuntu環境下安裝eclipseUbuntuEclipse
- python+Eclipse+pydev環境搭建PythonEclipsedev
- ubuntu+eclipse+cdt+boost環境搭建UbuntuEclipse
- struts2 使用Maven搭建Struts2框架的開發環境Maven框架開發環境
- Struts+spring+Hibernate+Mysql--環境搭建SpringMySql
- 開發環境配置開發環境
- windows 配置JAVA環境WindowsJava
- Mac PHP 環境配置MacPHP