99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

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

時(shí)間:2023-11-15  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)


 

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

請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

 

掃一掃在手機(jī)打開當(dāng)前頁(yè)
  • 上一篇:代做指標(biāo)定制選股公式代寫通達(dá)信山峰心理線副圖
  • 下一篇:GTSC2093代做、Java/Python編程代寫
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評(píng) 開團(tuán)工具
    出評(píng) 開團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
  • 短信驗(yàn)證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          国产精品理论片在线观看| 日韩午夜精品| 亚洲欧美日韩精品综合在线观看| 国产乱码精品一区二区三区不卡| 久久久av网站| 一个色综合av| 亚洲黄色成人| 国产丝袜一区二区三区| 欧美精品免费看| 久久嫩草精品久久久久| 欧美伊久线香蕉线新在线| 夜夜爽99久久国产综合精品女不卡| 国产一区二区三区四区hd| 国产精品久久福利| 欧美日韩系列| 欧美精品一区二区三区很污很色的| 性欧美激情精品| 在线亚洲伦理| 亚洲一区二区精品在线观看| 亚洲精品欧美极品| 亚洲国产欧美日韩另类综合| 一区二区三区在线视频免费观看 | 国产一区二区三区黄视频| 欧美日韩在线一区二区| 欧美日韩视频免费播放| 欧美精品国产| 欧美日韩大片| 欧美三级精品| 国产精品乱子久久久久| 国产精品国产三级国产aⅴ9色| 欧美日韩精品中文字幕| 欧美日韩综合在线免费观看| 欧美久久久久久久久| 欧美天堂亚洲电影院在线观看 | 亚洲国产一区二区精品专区| 1024成人| 夜夜嗨av一区二区三区四区 | 欧美久久一级| 国产精品视频福利| 国产精品乱人伦一区二区| 国产伦精品一区二区三区视频孕妇| 国产精品美女久久久久久2018| 国产精品乱码妇女bbbb| 国产亚洲激情| 亚洲国产视频一区| 一区二区精品在线| 香蕉国产精品偷在线观看不卡| 午夜精品久久久久久久久久久| 午夜一级久久| 免费视频亚洲| 国产伦精品一区二区三区免费| 极品少妇一区二区三区精品视频| 亚洲第一福利视频| 一区二区三区回区在观看免费视频| 亚洲视频一起| 欧美aa在线视频| 国产精品久久久久久超碰| 国产日韩欧美| 99精品视频网| 久久久一区二区三区| 欧美日本韩国在线| 国产午夜精品理论片a级探花| 亚洲国产欧美一区| 香港成人在线视频| 欧美日韩一区二区免费在线观看| 国产视频自拍一区| 一本综合久久| 噜噜噜躁狠狠躁狠狠精品视频| 欧美性天天影院| 亚洲人成网站在线播| 欧美在线观看日本一区| 欧美精品日本| 在线精品福利| 亚洲午夜精品久久久久久浪潮| 免费观看成人www动漫视频| 欧美乱大交xxxxx| 亚洲黄色免费网站| 久久久久久久尹人综合网亚洲| 欧美性大战xxxxx久久久| 亚洲国产成人精品视频| 久久爱www久久做| 国产精品啊啊啊| 亚洲国产成人精品视频| 亚洲一区二区视频在线| 欧美成人中文字幕在线| 国产日韩在线亚洲字幕中文| 亚洲欧洲一区二区在线观看| 久久亚洲国产精品日日av夜夜| 国产精品日韩专区| 亚洲免费一区二区| 欧美绝品在线观看成人午夜影视| 精品不卡在线| 久久爱www久久做| 国内免费精品永久在线视频| 欧美在线黄色| 国产乱码精品| 久久er精品视频| 国产亚洲激情| 久久久国产成人精品| 国产精品婷婷午夜在线观看| 亚洲永久在线| 国产一区二区精品在线观看| 欧美中文字幕在线| 尤物在线观看一区| 欧美成人精品在线观看| 亚洲精品社区| 国产精品久久久久久久9999 | 亚洲六月丁香色婷婷综合久久| 欧美 日韩 国产 一区| 日韩一区二区精品葵司在线| 欧美日韩在线视频一区二区| 亚洲欧美视频在线| 国产一区二区高清不卡| 麻豆精品精华液| 亚洲免费大片| 国产一区二区三区不卡在线观看| 久久亚洲精品网站| 日韩天堂在线视频| 国产一区二区三区的电影| 欧美sm重口味系列视频在线观看| 亚洲免费成人av电影| 国产精品一区二区三区四区五区| 久久久水蜜桃| avtt综合网| 国内精品久久久久久| 欧美黄色影院| 午夜久久久久久久久久一区二区| 依依成人综合视频| 欧美体内谢she精2性欧美 | 亚洲在线观看免费| 影音欧美亚洲| 国产美女精品| 欧美日韩高清免费| 久久久久久亚洲精品杨幂换脸 | 欧美日韩视频一区二区三区| 欧美一区二区视频97| 日韩天堂在线观看| 在线成人激情视频| 国产女主播视频一区二区| 欧美国产91| 久久久久国色av免费观看性色| 在线性视频日韩欧美| 在线日韩成人| 国产综合色产在线精品| 欧美亚男人的天堂| 欧美bbbxxxxx| 久久一综合视频| 欧美在线观看视频一区二区三区| 一本色道久久综合亚洲精品婷婷 | 国产欧美精品日韩| 欧美日韩精品二区第二页| 欧美成人免费在线观看| 欧美中文在线免费| 欧美在线播放高清精品| 亚洲一区在线免费| 亚洲深夜福利在线| 一区二区三区国产盗摄| 99re66热这里只有精品3直播| 在线精品高清中文字幕| 伊人天天综合| 在线国产亚洲欧美| 亚洲国产精品专区久久| 1769国内精品视频在线播放| 国内成人自拍视频| 狠狠久久亚洲欧美专区| 国内精品久久久久伊人av| 国产视频一区欧美| 国产主播一区| 亚洲国产美女| 亚洲毛片一区二区| 日韩午夜在线视频| 在线亚洲欧美视频| 亚洲欧美日韩在线播放| 午夜在线一区| 久久久久久久久岛国免费| 久久久国产一区二区| 久久久久久久一区二区| 毛片基地黄久久久久久天堂| 免费永久网站黄欧美| 欧美大片第1页| 欧美三级韩国三级日本三斤| 国产精品日韩一区二区| 国产一区白浆| 亚洲第一黄网| 亚洲色诱最新| 久久99伊人| 欧美国产第一页| 国产精品久久久久久久久久久久 | 欧美一区日本一区韩国一区| 久久久久久九九九九| 欧美成人精品一区| 国产精品久久久久久久久搜平片| 国内精品久久久久久| 99国产欧美久久久精品| 先锋影音国产一区| 欧美成人国产| 国产精品综合色区在线观看| 激情文学综合丁香| 一区二区高清| 免费人成精品欧美精品|