国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫159.251編程、代做Java程序語言

時間:2023-11-15  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯


 

159.251 - Software Design and Construction

Assignment 2 (22%)

Deadlines

You must submit your final work using the stream submission system no later than Sunday 19

November 2023. The penalty is 10% deducted from the total possible mark for every day delay

in submission (one day late – out of **%, two days late then out of 80% … etc.).

You are expected to manage your source code, this includes making frequent backups. It is

strongly recommended (but not required) to use a private git repository for this assignment,

and commit as frequently as possible. “The Cat Ate My Source Code” is not a valid excuse for a

late submission.

How to submit

1. Upload a zip file consisting of:

a. The Maven project folder (inc. pom.xml)

b. performance-analysis.pdf -measure time and memory consumption

c. coverage.pdf/html - the pdf or html version of the coverage report created by

Maven

2. upload this file to stream - note: the max upload size is set to 20 MB

3. verify the submission: download the zip file, unzip it into a new folder and inspect

content, run Maven from the command line, check the output including generated jar

files

Task

Work individually to create the following program in Java.

Create a project assign251_2 using the Maven project layout, and within this project, create a

project that implements custom appender and layout objects for Log4j. For this, you will need to

create an appender and layout that work with the other Log4j objects (i.e. implementing

relevant Log4j abstract classes or interfaces), test them and run profiling tools on them to gauge

their correctness and efficiency.

Note, there is no main class for this project, it will be run via your tests from sections 3 and 4.

You may want to consider a test-driven development methodology, where your first step is to

start with section 3 and work backwards. This will allow you to check that your classes are

working correctly as you go.

1. Implement a log4j appender - assign251_2.MemAppender [7 marks]

In this task, you will need to implement a custom log4j appender, which can be used directly

with the log4j logger. This MemAppender, unlike normal appenders, stores logs in memory and

prints them on demand. There is a limit to how many log events will be kept in memory (this

should be configurable), and if the maximum is reached, the oldest logs should be deleted.

Implementation details:

- It enforces the singleton pattern.

- It stores the LoggingEvents in a list. This is supplied by dependency injection (note: if

you have already created a default, that is okay).

- It will need a layout. This will need to be able to be supplied when the instance of an

MemAppender is obtained, and via the setLayout() method. If a layout is not supplied,

and code calling it is needed, appropriate precondition checks should be used (as some

code may not use the appender with the layout, so it is a valid option not to supply one,

as long as you don’t use any functionality that requires it).

- There are three ways to get information about the LoggingEvents that it stores:

a. Call the method getCurrentLogs() which will return an unmodifiable list of the

LoggingEvents.

b. Call the method getEventStrings() which will return an unmodifiable list of

strings (generated using a layout stored in the MemAppender).

c. Call the method printLogs() which will print the logging events to the console

using the layout and then clear the logs from its memory.

- It has a property called maxSize, which needs to be configurable. When this size is

reached, the oldest logs should be removed to make space for the new ones.

- The number of discarded logs should be tracked, and can be accessed using

getDiscardedLogCount(). This should be stored as a long type, as there may be many

discarded logs.

Note: Be careful to observe the DRY principle - there are overlapping requirements above.

3.5 marks Correct implementation of the singleton pattern and dependency injection

options for the list and layout.

2 marks Correct implementation of the information printing / collection methods,

along with sensible precondition checks where appropriate.

1.5 mark Correct implementation of maxSize and associated features.

2. Implement a layout - assign251_2.VelocityLayout [3

marks]

a. VelocityLayout basically works like PatternLayout, but uses Velocity as the

template engine. This layout should work with log4j appenders as well as the

MemAppender.

b. Variable to be supported:

i. c (category)

ii. d (date using the default toString() representation)

iii. m (message)

iv. p (priority)

v. t (thread)

vi. n (line separator)

c. This means that the variable syntax is different, e.g. use $m instead of %m

d. VelocityLayout should have options to set its pattern both in the constructor and

via a setter. An example string pattern could look like:

“[$p] $c $d: $m”

3. Write tests that test your appender and layout in combination with different loggers,

levels and appenders [4 marks]

a. Use JUnit for testing your appender and layout. Aim for good test coverage and

precise asserts.

b. Use the tests to show both the appender and layout working with different

combinations of built-in log4j classes as well as with each other.

c. Tests should be stored in the appropriate locations according to the Maven folder

structure.

4. Write tests to stress-test your appender/layout by creating a large amount of log

statements [6 marks]

a. Create a separate test class for stress tests.

b. Use these tests to compare the performance between MemAppender using a

LinkedList, MemAppender using an ArrayList, ConsoleAppender and

FileAppender - measure time and memory consumption (using JConsole,

VisualVM or any profiler)

c. Consider how to output your logs in such a way that makes comparisons

between the MemAppender and other appenders sensible.

d. Use these scripts to compare the performance between PatternLayout and

VelocityLayout

e. Stress tests should test performance before and after maxSize has been

reached, and with different maxSize values.

i. parameterised tests may be helpful here.

f. Write a short report summarising your findings (embed screenshots of memory

usage charts in this report taken from VisualVM). The report name should be

performance-analysis.pdf

g. Measure your test coverage of the written tests by generating branch and

statement coverage reports using Jacoco or Emma. Submit this report with your

project (should be placed under ~/target/ folder”

Note that the marks for this section will be based on your reporting, the effectiveness of your

stress tests in probing into the efficiency of the classes, and the overall integration testing,

checking that these classes work in combination with other relevant out-of-the-box classes.

5. Write a Maven build script [2 marks]

a. The Maven script should be used to build the project including compiling, testing,

measuring test coverage, and dependency analysis. All dependencies should be

managed with your maven build.

b. Use the jacoco Maven plugin for measuring test coverage.

Hints

● You can use any development environment you prefer, as it is a Maven project.

● Library approved list: only the following libraries can be used: Apache log4j, Apache

Velocity, JUnit 5, Google Guava, Apache Commons Collections, JaCoCo (for code

coverage).

Penalties

1. Code that is not self-documenting, or long or complex methods.

2. Violating the Maven standard project layout or Java naming conventions.

3. Use of absolute paths (e.g., libraries should not be referenced using absolute paths like

“C:\\Users\\..”, instead use relative references w.r.t. the project root folder)

4. References to local libraries (libraries should be referenced via the Maven repository)

5. Use of libraries not on the whitelist

Bonus Question [2 marks]

You can get 100% for the assignment without this. This will give you additional marks up to the

maximum if you lose some elsewhere.

Create an MBean object for each instance of the MemAppender to add JMX monitoring to this

object, the properties to be monitored are

1. the log messages as array

2. the estimated size of the cached logs (total characters)

3. the number of logs that have been discarded

Marking Rubric

Your assessment will be based on the following criteria:

Criteria Mark

Implementation of log4j appender assign251_2.MemAppender 7

Correct implementation of the singleton pattern and dependency injection

options for the list and layout.

3.5

Correct implementation of the information printing / collection methods,

along with sensible precondition checks where appropriate

2

Correct implementation of maxSize and associated features. 1.5

Implementation of layout assign251_2.VelocityLayout 3

Correct use of the Velocity template engine 1

Works with appenders and MemAppender 1

Supports listed variables 1

Testing the implemented appender and layout 4

Use of Junit with good coverage and precise asserts 2

Tests show that the appender and layout work with different combinations of

built-in log4j classes and each other

1.5

Tests stored in appropriate locations following Maven directory structure 0.5

Stress-testing your appender/layout 6

Separate class for stress tests 0.5

Comparison of performance between MemAppender using LinkedList,

ArrayList, ConsoleAppender and FileAppender - with measurements: time,

memory consumption for different maxSizes

2

Scripts to compare velocity and pattern layout 1

Report of stress test findings with an analysis of the stress test results and

measurements

2

Test coverage reports 0.5

Build management 2

Uses maven for dependency, coverage (using jacoco) 2

(extra/bonus)

Implementation of an MBean object for instances of MemAppender for JMX

monitoring of properties: log messages, estimated size of cached logs,

number of logs discarded

請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

 

掃一掃在手機打開當前頁
  • 上一篇:代做指標定制選股公式代寫通達信山峰心理線副圖
  • 下一篇:GTSC2093代做、Java/Python編程代寫
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    超碰在线97av| 久久久伊人欧美| 国产精品主播视频| 日韩一区二区三区国产| 亚洲欧洲日产国码无码久久99| 欧美亚洲视频一区| 国产成人av一区二区三区| 欧美激情久久久久| 国产综合动作在线观看| 色青青草原桃花久久综合| 亚洲成人午夜在线| av一区二区三区四区电影| 久久99精品久久久久久噜噜 | 国产又大又硬又粗| 国产成人精品av| 五月天亚洲综合情| 91精品免费看| 午夜精品久久久久久久久久久久久 | 国产精品免费在线| 欧洲亚洲在线视频| 久久久久久中文| 日本欧美中文字幕| 久久精品国产精品亚洲精品色| 无码中文字幕色专区| 国产精品99蜜臀久久不卡二区| 在线精品亚洲一区二区| 国产狼人综合免费视频| 九九热视频这里只有精品| 国产在线精品成人一区二区三区| www.日韩av.com| 青青视频在线播放| 久久久久久久久久久久久久久久av| 日本在线成人一区二区| 国产极品尤物在线| 日韩av免费看| 日韩亚洲精品视频| 免费在线一区二区| 精品久久久久久无码国产| 国产美女99p| 亚洲永久在线观看| 久久一区免费| 日韩aⅴ视频一区二区三区| 精品国产一区二区三区四区在线观看| 欧美精品一区二区三区免费播放| 国产精品精品视频一区二区三区 | 国产精品一区二区欧美黑人喷潮水| 欧美日韩电影在线观看| 99热在线播放| 日韩国产高清一区| 国产精品网站入口| 国产日韩欧美精品| 在线观看福利一区| 国产高清在线一区| 欧美日韩dvd| 欧美激情一级欧美精品| 91久久在线视频| 日韩精品资源| 国产精品久久成人免费观看| 国产精品亚洲视频在线观看| 日韩aⅴ视频一区二区三区| 久久99精品久久久久久秒播放器 | 久久久久久久免费| 黄色一级片在线看| 中文字幕欧美日韩一区二区三区| 久久久午夜视频| 免费在线a视频| 中文字幕精品一区日韩| 九九热久久66| 国产日韩欧美电影在线观看| 亚洲一区二区在线| 精品国产区一区二区三区在线观看| 蜜桃传媒一区二区三区| 亚洲啪啪av| 日韩亚洲欧美中文在线| 国产日韩欧美夫妻视频在线观看| 午夜精品理论片| 国产精品大全| 99精品在线直播| 精品欧美一区二区久久久伦| 在线亚洲美日韩| 精品国产拍在线观看| 97久久精品午夜一区二区| 欧美最猛性xxxx| 中文字幕一区二区三区有限公司 | 国产玖玖精品视频| 欧美中文在线观看国产| 中文一区一区三区免费| zzjj国产精品一区二区| yy111111少妇影院日韩夜片| 欧美日韩亚洲一| 亚洲精品久久区二区三区蜜桃臀| 国产精品日韩电影| 国产传媒欧美日韩| 成人精品一区二区三区电影黑人| 欧美 日韩 亚洲 一区| 色噜噜狠狠色综合网| 欧美激情在线有限公司| 国产精品偷伦视频免费观看国产| 国产精品又粗又长| 欧美精品一区二区三区在线四季| 午夜精品视频在线观看一区二区| 麻豆一区二区在线观看| 久久黄色av网站| 久久青青草原| 成人av资源网| 国产欧美日韩亚洲| 欧美在线精品免播放器视频| 亚洲在线欧美| 精品国产一二三四区| 国产精品无码av在线播放| 国产黑人绿帽在线第一区| 99在线国产| 国产日韩在线看| 黄色免费视频大全| 日本一区精品| 亚洲成人第一| 亚洲永久激情精品| 欧美日本精品在线| 欧美成年人视频网站| 北条麻妃一区二区三区中文字幕| 久久综合中文色婷婷| 国产精品一区二区三区久久久 | 国产又黄又大又粗视频| 日韩av一区二区三区在线| 一区二区三区四区免费视频| 欧美成年人视频网站| 久久久精品久久久久| 国产suv精品一区二区| 久久亚洲一区二区| 91成人免费观看网站| 99久热re在线精品视频| 国产精品一区二区三区久久久| 国产日韩在线视频| 国产男女激情视频| 国产男女激情视频| 国产免费一区二区| 国产系列第一页| 国产日韩欧美另类| 国产在线青青草| 国产在线观看精品一区二区三区| 免费毛片网站在线观看| 国产又粗又爽又黄的视频| 韩国精品一区二区三区六区色诱| 日韩免费在线看| 秋霞成人午夜鲁丝一区二区三区 | 久久99久久99精品| 久久国产精品 国产精品| 国产成人精品免高潮在线观看| 91精品国产九九九久久久亚洲| 91久久久亚洲精品| 91精品国产网站| 9191国产视频| 国产不卡一区二区视频| 久久久久久久久久久久久久一区| 深夜精品寂寞黄网站在线观看| 久久久av网站| 国产精品国产三级欧美二区| 国产精品久久久久久av| 精品久久久久久久免费人妻| 一本一生久久a久久精品综合蜜| 亚洲精品视频一区二区三区 | 国内揄拍国内精品少妇国语| 国产一区 在线播放| 国产欧美精品一区二区三区-老狼| 国产日韩二区| 国产欧美日韩免费| 99亚洲国产精品| 国产高清视频一区三区| 波霸ol色综合久久| 国产精品激情av电影在线观看| 欧美激情网站在线观看| 亚洲激情电影在线| 欧日韩不卡在线视频| 国产欧美一区二区三区久久| 91国产视频在线播放| 国产成人啪精品视频免费网 | 欧美一级电影久久| 国产人妖伪娘一区91| 91九色对白| 国产精品丝袜久久久久久高清| 欧美精品免费在线| 午夜精品久久久久久久久久久久| 欧美在线免费观看| 国产精品中文久久久久久久| 久久久久久美女| 欧美成年人在线观看| 婷婷久久五月天| 欧美不卡三区| 91老司机精品视频| 国产精品久久久久久久免费大片| 宅男一区二区三区| 日本在线观看a| 国产久一道中文一区| 久久久久久噜噜噜久久久精品| 欧美黄网免费在线观看| 青青青国产精品一区二区| 国产美女精彩久久| 国产freexxxx性播放麻豆| 欧美日韩成人黄色| 日本精品性网站在线观看|