基於SSM開發的企業進存銷系統 JAVA MySQL
10076基於SSM開發的企業進存銷系統
執行視訊、程式碼等:
連結:https://pan.baidu.com/s/1g1mo95iv6vFELMHI95OELA
提取碼:1589
複製這段內容後開啟百度網盤手機App,操作更方便哦
技術
Spring + SpringMVC + Mybatis
工具
eclipse + tomact + mysql + jdk
功能詳情
功能詳情 |
---|
進貨管理:展示進貨詳情 |
銷售管理:展示銷售詳情 |
庫存管理:展示庫存情況 |
統計報表:對供應商、客戶、商品採集銷售情況進行統計 |
基礎資料:維護供應商、客戶和商品資訊 |
系統管理:系統相關設定 |
系統相關截圖
● 系統首頁
package servlet;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import com.google.gson.JsonPrimitive;
import dao.SimpleWordSegment;
import dao.WordSegment;
import org.apache.log4j.Logger;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.List;
@WebServlet(name = “WordSegmentServlet”, value = “/WordSegmentServlet”)
public class WordSegmentServlet extends HttpServlet {
private static Logger logger = Logger.getLogger(WordSegmentServlet.class);
private WordSegment wordSegment = new SimpleWordSegment();
private JsonObject json = new JsonObject();
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws javax.servlet.ServletException, IOException {
response.setCharacterEncoding(“utf-8”);
response.setContentType(“application/json”);
response.setHeader(“Access-Control-Allow-Origin”, “*”);
String returnType = “JSON”;
String string = request.getParameter(“text”);
switch (returnType) {
case “JSON”:
// 分詞結果轉換成JSON資料
segment2Json(string);
logger.debug(“要返回的JSON資料為:” + json.toString());
response.getWriter().write(json.toString());
break;
case “JSP”:
break;
default:
break;
}
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws javax.servlet.ServletException, IOException {
logger.debug(“使用do get方法”);
doPost(request, response);
}
/**
分詞演算法
@param text
*/
public void segment2Json(String text) {
String[] methods = {“MM”, “RMM”, “BM”, “MC”};
if (text == null || text.equals("")) {
json.addProperty(“status”, false);
json.addProperty(“error”, “分詞字串為空!”);
return ;
}
JsonArray array = new JsonArray();
for (String method : methods) {
JsonObject result = new JsonObject();
// 演算法的名稱
result.addProperty(“name”, method);
long start = System.currentTimeMillis();
List data = string2dataSegment(method, text);
long end = System.currentTimeMillis();
JsonArray dataSegment = new JsonArray();
if (data != null && data.size() != 0) {
StringBuffer log = new StringBuffer("");
for (String s : data) {
log.append(s + " / ");
dataSegment.add(new JsonPrimitive(s));
}
logger.debug(“分詞結果為:” + log);
}
// 演算法的分詞結果
result.add(“dataSegment”, dataSegment);
// 演算法的執行時間
result.addProperty(“time”, end - start);
array.add(result);
1
}
json.addProperty(“status”, true);
// 所有演算法的分詞結果
json.add(“result”, array);
}
/**
得到對應的分詞方法的結果
@param method
@param text
@return
*/
public List string2dataSegment(String method, String text) {
List dataSegment = null;
try {
Method[] methods = wordSegment.getClass().getDeclaredMethods();
for (Method m : methods) {
if (m.getName().equals(method)) {
dataSegment = (List) m.invoke(wordSegment, text);
break;
}
}
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
return dataSegment;
}
public JsonObject getJson() {
return json;
}
}
package weibo4j;
import java.util.List;
import weibo4j.model.Favorites;
import weibo4j.model.FavoritesTag;
import weibo4j.model.Paging;
import weibo4j.model.PostParameter;
import weibo4j.model.Tag;
import weibo4j.model.WeiboException;
import weibo4j.org.json.JSONException;
import weibo4j.org.json.JSONObject;
import weibo4j.util.WeiboConfig;
public class Favorite extends Weibo{
/**
*
*/
private static final long serialVersionUID = 2298934944028795652L;
/**
獲取當前登入使用者的收藏列表
@return list of the Status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.1
@see favorites
@since JDK 1.5
/
public List getFavorites() throws WeiboException {
return Favorites.constructFavorites(client.get(WeiboConfig
.getValue(“baseURL”) + “favorites.json”));
}
/*
獲取當前登入使用者的收藏列表
@param page
、count
1
@return list of the Status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.1
@see favorites
@since JDK 1.5
/
public List getFavorites(Paging page) throws WeiboException {
return Favorites.constructFavorites(client.get(
WeiboConfig.getValue(“baseURL”) + “favorites.json”,
null, page));
}
/*
獲取當前登入使用者的收藏列表ID
@return list of the Status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.1
@see favorites
@since JDK 1.5
/
public JSONObject getFavoritesIds() throws WeiboException {
return client.get(WeiboConfig
.getValue(“baseURL”) + “favorites/ids.json”).asJSONObject();
}
/*
獲取當前登入使用者的收藏列表ID
@return list of the Status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.1
@see favorites
@since JDK 1.5
/
public JSONObject getFavoritesIds(Paging page) throws WeiboException {
return client.get(WeiboConfig
.getValue(“baseURL”) + “favorites/ids.json”,null,page).asJSONObject();
}
/*
根據收藏ID獲取指定的收藏資訊
@param id
@return Status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.1
@see favorites/show
1
@since JDK 1.5
*/
public Favorites showFavorites(String id) throws WeiboException {
return new Favorites(client.get(WeiboConfig.getValue(“baseURL”)
- “favorites/show.json”,
new PostParameter[] { new PostParameter(“id”, id) }));
}
/**
根據標籤獲取當前登入使用者該標籤下的收藏列表
@param tid
@return list of the favorite Status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.1
@see favorites/by_tags
1
@since JDK 1.5
/
public List getFavoritesByTags(String tid) throws WeiboException {
return Favorites.constructFavorites(client.get(
WeiboConfig.getValue(“baseURL”) + “favorites/by_tags.json”,
new PostParameter[] { new PostParameter(“tid”, tid) }));
}
/*
根據標籤獲取當前登入使用者該標籤下的收藏列表
@param tid
@param page
@return list of the favorite Status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.0
@see favorites/show
1
@since JDK 1.5
/
public List getFavoritesByTags(String tid, Paging page)
throws WeiboException {
return Favorites.constructFavorites(client.get(
WeiboConfig.getValue(“baseURL”) + “favorites/by_tags.json”,
new PostParameter[] { new PostParameter(“tid”, tid) }, page));
}
/*
獲取當前登入使用者的收藏標籤列表
@param page
@return list of the favorite tags
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.1
@see favorites/tags
1
@since JDK 1.5
*/
public List getFavoritesTags() throws WeiboException {
return Tag.constructTag(client.get(WeiboConfig
.getValue(“baseURL”) + “favorites/tags.json”));
}
/**
@param 要收藏的微博ID
。
1
@return Favorites status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.0
@see favorites/create
1
@since JDK 1.5
*/
public Favorites createFavorites(String id) throws WeiboException {
return new Favorites(client.post(WeiboConfig.getValue(“baseURL”)
- “favorites/create.json”,
new PostParameter[] { new PostParameter(“id”, id) }));
}
/**
@param 要取消收藏的微博ID
。
1
@return Favorites status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.0
@see favorites/destroy
1
@since JDK 1.5
*/
public Favorites destroyFavorites(String id) throws WeiboException {
return new Favorites(client.post(WeiboConfig.getValue(“baseURL”)
- “favorites/destroy.json”,
new PostParameter[] { new PostParameter(“id”, id) }));
}
/**
批量刪除收藏
@param ids
要取消收藏的收藏ID,用半形逗號分隔,最多不超過10個。
1
@return destroy list of Favorites status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.0
@see favorites/destroy_batch
1
@since JDK 1.5
*/
public Boolean destroyFavoritesBatch(String ids) throws WeiboException {
try {
return client
.post(WeiboConfig.getValue(“baseURL”)
- “favorites/destroy_batch.json”,
new PostParameter[] { new PostParameter(“ids”, ids) })
.asJSONObject().getBoolean(“result”);
} catch (JSONException e) {
throw new WeiboException(e);
}
}
/**
更新一條收藏的收藏標籤
@param id
要需要更新的收藏ID
1
@return update tag of Favorites status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.0
@see favorites/tags/update
1
@since JDK 1.5
*/
public Favorites updateFavoritesTags(String id) throws WeiboException {
return new Favorites(client.post(WeiboConfig.getValue(“baseURL”)
- “favorites/tags/update.json”,
new PostParameter[] { new PostParameter(“id”, id) }));
}
/**
更新一條收藏的收藏標籤
@param id
要需要更新的收藏ID
1
@param tags
需要更新的標籤內容,必須做URLencode,用半形逗號分隔,最多不超過2條。
1
@return update tag of Favorites status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.0
@see favorites/tags/update
1
@since JDK 1.5
*/
public Favorites updateFavoritesTags(String id, String tags)
throws WeiboException {
return new Favorites(client.post(WeiboConfig.getValue(“baseURL”)
- “favorites/tags/update.json”, new PostParameter[] {
new PostParameter(“id”, id), new PostParameter(“tags”, tags) }));
}
/**
更新當前登入使用者所有收藏下的指定標籤
@param id
需要更新的標籤ID。
1
@return update tags of Favorites status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.0
@see favorites/tags/update_batch
1
@since JDK 1.5
*/
public JSONObject updateFavoritesTagsBatch(String tid, String tag)
throws WeiboException {
return client.post(
WeiboConfig.getValue(“baseURL”)
- “favorites/tags/update_batch.json”,
new PostParameter[] { new PostParameter(“tid”, tid),
new PostParameter(“tag”, tag) }).asJSONObject();
}
/**
刪除當前登入使用者所有收藏下的指定標籤
@param id
需要刪除的標籤ID。。
1
@return destroy tags of Favorites status
@throws WeiboException
when Weibo service or network is unavailable
1
@version weibo4j-V2 1.0.0
@see favorites/tags/destroy_batch
1
@since JDK 1.5
*/
public Boolean destroyFavoritesTagsBatch(String ids) throws WeiboException {
try {
return client
.post(WeiboConfig.getValue(“baseURL”)
- “favorites/destroy_batch.json”,
new PostParameter[] { new PostParameter(“ids”, ids) })
.asJSONObject().getBoolean(“result”);
} catch (JSONException e) {
throw new WeiboException(e);
}
}
相關文章
- 基於SSM開發的企業人事管理系統SSM
- 基於SSM開發的健身俱樂部管理系統 JAVA MySQLSSMJavaMySql
- Java開發進銷存管理系統Java
- 基於SSM開發的物業維修管理系統SSM
- Java開發進銷存管理系統(二)Java
- Java開發進銷存管理系統(三)Java
- 企業管理系統庫存管理軟體進銷存系統協同辦公系統二次開發
- java 基於SSM框架開發線上音樂視訊MV管理系統JavaSSM框架
- 基於本人開發的許可權系統開發的企業站
- 中小企業基於資訊系統的存貨管理
- 基於java的陶瓷工廠進銷存管理系統的設計與實現Java
- 基於Java的SSH的超市進銷存管理系統(原始碼+資料庫+論文)Java原始碼資料庫
- 企業進銷存體系有哪些型別?型別
- 進銷存系統能給企業帶來什麼好處?
- 條碼追溯系統解決外貿企業進銷存管理
- 基於TP3.1開發的企業網站管理系統網站
- java jsp企業員工考勤系統ssm框架JavaJSSSM框架
- 進銷存軟體ERP管理系統開發搭建
- 基於SSM的職員考勤系統SSM
- 中小型企業用進銷存系統有什麼好處?
- 中小企業如何有效管理進銷存?ERP系統有何作用?
- 基於java jsp的某企業員工管理系統JavaJS
- java 進銷存 銷售報表 庫存管理 商戶管理 springmvc SSM crm 專案JavaSpringMVCSSM
- 進銷存系統搭建流程
- 進銷存管理系統 官方
- 基於Raft的分散式MySQL Binlog儲存系統開源Raft分散式MySql
- Java基於SSM框架的計算機學院管理系統(3)JavaSSM框架計算機
- java 進銷存 crm websocket即時聊天發圖片文字 好友群組 SSM原始碼JavaWebSSM原始碼
- 簡易進銷存CRM系統
- (javaweb)超市管理系統(商品進銷存系統)JavaWeb
- 基於SSM的酒店管理系統畢業設計論文【範文】SSM
- 中小企業進銷存辦理軟體管理
- 基於java的企業車輛管理系統的設計與實現Java
- wms倉庫管理系統,php進銷存系統PHP
- 免費開源TuziCMS基於ThinkPHP的企業網站管理系統PHP網站
- 基於SSM的線上考試系統畢業設計論文【範文】SSM
- 基於SSM的網上商城系統畢業設計論文【範文】SSM
- 數商雲分銷管理系統開發,解決傳統企業運營分銷商城系統難點